You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by va...@apache.org on 2008/05/23 01:26:18 UTC

svn commit: r659307 [3/24] - in /ode/trunk: axis2-war/src/main/webapp/WEB-INF/ axis2-war/src/main/webapp/WEB-INF/classes/ axis2-war/src/test/resources/XSDReferences/ axis2-war/src/test/resources/XSDReferences/BPMN/ axis2-war/src/test/resources/XSDRefer...

Modified: ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/UndeclaredExtensionAssignOperation.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/UndeclaredExtensionAssignOperation.bpel?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/UndeclaredExtensionAssignOperation.bpel (original)
+++ ode/trunk/bpel-compiler/src/test/resources/org/apache/ode/bpel/compiler/UndeclaredExtensionAssignOperation.bpel Thu May 22 16:25:57 2008
@@ -1,35 +1,35 @@
-<!--
-	~ Licensed to the Apache Software Foundation (ASF) under one
-	~ or more contributor license agreements.  See the NOTICE file
-	~ distributed with this work for additional information
-	~ regarding copyright ownership.  The ASF licenses this file
-	~ to you under the Apache License, Version 2.0 (the
-	~ "License"); you may not use this file except in compliance
-	~ with the License.  You may obtain a copy of the License at
-	~
-	~    http://www.apache.org/licenses/LICENSE-2.0
-	~
-	~ Unless required by applicable law or agreed to in writing,
-	~ software distributed under the License is distributed on an
-	~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-	~ KIND, either express or implied.  See the License for the
-	~ specific language governing permissions and limitations
-	~ under the License.
--->
-
-<process name="UndeclaredExtensionActivity" suppressJoinFailure="yes"
-	targetNamespace="http://jlo/test/compile"
-	xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
-	xmlns:tns="http://jlo/test/compile"
-	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-	xmlns:ext="urn:ode:test-ext">
-	<flow>
-		<sequence>
-			<assign>
-				<extensionAssignOperation>
-					<ext:unknownExt name="myExt"/>
-				</extensionAssignOperation>
-			</assign>
-		</sequence>
-	</flow>
-</process>
+<!--
+	~ Licensed to the Apache Software Foundation (ASF) under one
+	~ or more contributor license agreements.  See the NOTICE file
+	~ distributed with this work for additional information
+	~ regarding copyright ownership.  The ASF licenses this file
+	~ to you under the Apache License, Version 2.0 (the
+	~ "License"); you may not use this file except in compliance
+	~ with the License.  You may obtain a copy of the License at
+	~
+	~    http://www.apache.org/licenses/LICENSE-2.0
+	~
+	~ Unless required by applicable law or agreed to in writing,
+	~ software distributed under the License is distributed on an
+	~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+	~ KIND, either express or implied.  See the License for the
+	~ specific language governing permissions and limitations
+	~ under the License.
+-->
+
+<process name="UndeclaredExtensionActivity" suppressJoinFailure="yes"
+	targetNamespace="http://jlo/test/compile"
+	xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
+	xmlns:tns="http://jlo/test/compile"
+	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+	xmlns:ext="urn:ode:test-ext">
+	<flow>
+		<sequence>
+			<assign>
+				<extensionAssignOperation>
+					<ext:unknownExt name="myExt"/>
+				</extensionAssignOperation>
+			</assign>
+		</sequence>
+	</flow>
+</process>

Modified: ode/trunk/bpel-obj/src/main/java/org/apache/ode/bpel/o/OExtensionActivity.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-obj/src/main/java/org/apache/ode/bpel/o/OExtensionActivity.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-obj/src/main/java/org/apache/ode/bpel/o/OExtensionActivity.java (original)
+++ ode/trunk/bpel-obj/src/main/java/org/apache/ode/bpel/o/OExtensionActivity.java Thu May 22 16:25:57 2008
@@ -1,41 +1,41 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.ode.bpel.o;
-
-import java.util.ArrayList;
-import java.util.List;
-
-import org.apache.ode.utils.SerializableElement;
-
-
-/**
- * Compiled representation of the BPEL <code>&lt;extensionActivity&gt;</code> activity.
- * 
- * @author Tammo van Lessen (University of Stuttgart)
- */
-public class OExtensionActivity extends OActivity {
-  
-    static final long serialVersionUID = -1L  ;
-    public final List<OActivity> children = new ArrayList<OActivity>();
-    public SerializableElement nestedElement;
-    
-    public OExtensionActivity(OProcess owner, OActivity parent) {
-        super(owner, parent);
-    }
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.ode.bpel.o;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.apache.ode.utils.SerializableElement;
+
+
+/**
+ * Compiled representation of the BPEL <code>&lt;extensionActivity&gt;</code> activity.
+ * 
+ * @author Tammo van Lessen (University of Stuttgart)
+ */
+public class OExtensionActivity extends OActivity {
+  
+    static final long serialVersionUID = -1L  ;
+    public final List<OActivity> children = new ArrayList<OActivity>();
+    public SerializableElement nestedElement;
+    
+    public OExtensionActivity(OProcess owner, OActivity parent) {
+        super(owner, parent);
+    }
+}

Modified: ode/trunk/bpel-ql/build.properties
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/build.properties?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/build.properties (original)
+++ ode/trunk/bpel-ql/build.properties Thu May 22 16:25:57 2008
@@ -1,26 +1,26 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#    http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-
-#Mon Mar 20 18:02:40 EET 2006
-javacc.home=../buildlib/javacc-4.0
-grammar.node.package_dir=com/fs/ode/ql/jcc
-grammar.node.custom=src/jcc/com/fs/ode/ql/jcc
-grammar.node.package=org.apache.ode.ql.jcc
-grammar.syntax.src=com/fs/ode/ql/jcc/ql.jj
-grammar.tree.src=src/main/jjtree/ql.jjt
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+#Mon Mar 20 18:02:40 EET 2006
+javacc.home=../buildlib/javacc-4.0
+grammar.node.package_dir=com/fs/ode/ql/jcc
+grammar.node.custom=src/jcc/com/fs/ode/ql/jcc
+grammar.node.package=org.apache.ode.ql.jcc
+grammar.syntax.src=com/fs/ode/ql/jcc/ql.jj
+grammar.tree.src=src/main/jjtree/ql.jjt

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/Compiler.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/Compiler.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/Compiler.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/Compiler.java Thu May 22 16:25:57 2008
@@ -1,27 +1,27 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql;
-
-import org.apache.ode.ql.eval.skel.CommandEvaluator;
-import org.apache.ode.ql.tree.nodes.Query;
-
-public abstract class Compiler<R, PARAMC> {
-    public abstract CommandEvaluator<R, PARAMC> compile(Query query);
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql;
+
+import org.apache.ode.ql.eval.skel.CommandEvaluator;
+import org.apache.ode.ql.tree.nodes.Query;
+
+public abstract class Compiler<R, PARAMC> {
+    public abstract CommandEvaluator<R, PARAMC> compile(Query query);
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/ValidationException.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/ValidationException.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/ValidationException.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/ValidationException.java Thu May 22 16:25:57 2008
@@ -1,54 +1,54 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql;
-
-public class ValidationException extends Exception {
-    private static final long serialVersionUID = -6838858327728094014L;
-
-    /**
-     * 
-     */
-    public ValidationException() {
-        super();
-    }
-
-    /**
-     * @param message
-     * @param cause
-     */
-    public ValidationException(String message, Throwable cause) {
-        super(message, cause);
-    }
-
-    /**
-     * @param message
-     */
-    public ValidationException(String message) {
-        super(message);
-    }
-
-    /**
-     * @param cause
-     */
-    public ValidationException(Throwable cause) {
-        super(cause);
-    }
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql;
+
+public class ValidationException extends Exception {
+    private static final long serialVersionUID = -6838858327728094014L;
+
+    /**
+     * 
+     */
+    public ValidationException() {
+        super();
+    }
+
+    /**
+     * @param message
+     * @param cause
+     */
+    public ValidationException(String message, Throwable cause) {
+        super(message, cause);
+    }
+
+    /**
+     * @param message
+     */
+    public ValidationException(String message) {
+        super(message);
+    }
+
+    /**
+     * @param cause
+     */
+    public ValidationException(Throwable cause) {
+        super(cause);
+    }
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractCMPEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractCMPEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractCMPEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractCMPEvaluator.java Thu May 22 16:25:57 2008
@@ -1,34 +1,34 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public abstract class AbstractCMPEvaluator<ID, R, PARAMC> implements CMPEvaluator<ID, R, PARAMC> {
-    protected final ID identifier;
-    
-    protected AbstractCMPEvaluator(ID identifier) {
-        this.identifier = identifier;
-    }
-    /**
-     * @see org.apache.ode.ql.eval.skel.Identified#getIdentifier()
-     */
-    public ID getIdentifier() {
-        return identifier;
-    }
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public abstract class AbstractCMPEvaluator<ID, R, PARAMC> implements CMPEvaluator<ID, R, PARAMC> {
+    protected final ID identifier;
+    
+    protected AbstractCMPEvaluator(ID identifier) {
+        this.identifier = identifier;
+    }
+    /**
+     * @see org.apache.ode.ql.eval.skel.Identified#getIdentifier()
+     */
+    public ID getIdentifier() {
+        return identifier;
+    }
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractConjunction.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractConjunction.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractConjunction.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractConjunction.java Thu May 22 16:25:57 2008
@@ -1,32 +1,32 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-import java.util.Collection;
-
-public abstract class AbstractConjunction<R, PARAMC> extends AbstractContainer implements
-		ConjunctionEvaluator<R, PARAMC> {
-
-	public AbstractConjunction(Collection<CommandEvaluator> childs) {
-		super(childs);
-	}
-
-	
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+import java.util.Collection;
+
+public abstract class AbstractConjunction<R, PARAMC> extends AbstractContainer implements
+		ConjunctionEvaluator<R, PARAMC> {
+
+	public AbstractConjunction(Collection<CommandEvaluator> childs) {
+		super(childs);
+	}
+
+	
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractContainer.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractContainer.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractContainer.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractContainer.java Thu May 22 16:25:57 2008
@@ -1,36 +1,36 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-import java.util.Collection;
-
-public abstract class AbstractContainer implements CommandContainer {
-	protected final Collection<CommandEvaluator> childs;
-	
-	public AbstractContainer(Collection<CommandEvaluator> childs) {
-		super();
-		this.childs = childs;
-	}
-
-	public Collection<CommandEvaluator> getChilds() {
-		return childs;
-	}
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+import java.util.Collection;
+
+public abstract class AbstractContainer implements CommandContainer {
+	protected final Collection<CommandEvaluator> childs;
+	
+	public AbstractContainer(Collection<CommandEvaluator> childs) {
+		super();
+		this.childs = childs;
+	}
+
+	public Collection<CommandEvaluator> getChilds() {
+		return childs;
+	}
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractDisjunction.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractDisjunction.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractDisjunction.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractDisjunction.java Thu May 22 16:25:57 2008
@@ -1,32 +1,32 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-import java.util.Collection;
-
-public abstract class AbstractDisjunction<R, PARAMC> extends AbstractContainer implements
-		DisjunctionEvaluator<R, PARAMC> {
-
-	public AbstractDisjunction(Collection<CommandEvaluator> childs) {
-		super(childs);
-	}
-
-	
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+import java.util.Collection;
+
+public abstract class AbstractDisjunction<R, PARAMC> extends AbstractContainer implements
+		DisjunctionEvaluator<R, PARAMC> {
+
+	public AbstractDisjunction(Collection<CommandEvaluator> childs) {
+		super(childs);
+	}
+
+	
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractEqualityEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractEqualityEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractEqualityEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/AbstractEqualityEvaluator.java Thu May 22 16:25:57 2008
@@ -1,32 +1,32 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public abstract class AbstractEqualityEvaluator<ID, R, PARAMC>  extends AbstractCMPEvaluator<ID, R, PARAMC> implements EqualityEvaluator<ID, R, PARAMC> {
-
-    /**
-     * @param identifier
-     */
-    public AbstractEqualityEvaluator(ID identifier) {
-        super(identifier);
-    }
-    
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public abstract class AbstractEqualityEvaluator<ID, R, PARAMC>  extends AbstractCMPEvaluator<ID, R, PARAMC> implements EqualityEvaluator<ID, R, PARAMC> {
+
+    /**
+     * @param identifier
+     */
+    public AbstractEqualityEvaluator(ID identifier) {
+        super(identifier);
+    }
+    
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/CMPEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/CMPEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/CMPEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/CMPEvaluator.java Thu May 22 16:25:57 2008
@@ -1,24 +1,24 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-interface CMPEvaluator<ID, R, PARAMC> extends CommandEvaluator<R, PARAMC>, Identified<ID> {
-    
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+interface CMPEvaluator<ID, R, PARAMC> extends CommandEvaluator<R, PARAMC>, Identified<ID> {
+    
 }
\ No newline at end of file

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/CommandContainer.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/CommandContainer.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/CommandContainer.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/CommandContainer.java Thu May 22 16:25:57 2008
@@ -1,26 +1,26 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-import java.util.Collection;
-
-public interface CommandContainer {
-	public Collection<CommandEvaluator> getChilds();
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+import java.util.Collection;
+
+public interface CommandContainer {
+	public Collection<CommandEvaluator> getChilds();
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/CommandEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/CommandEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/CommandEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/CommandEvaluator.java Thu May 22 16:25:57 2008
@@ -1,25 +1,25 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public interface CommandEvaluator<R, PARAMC> {
-    public R evaluate(PARAMC paramValue);
-}
-
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public interface CommandEvaluator<R, PARAMC> {
+    public R evaluate(PARAMC paramValue);
+}
+

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/ConjunctionEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/ConjunctionEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/ConjunctionEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/ConjunctionEvaluator.java Thu May 22 16:25:57 2008
@@ -1,24 +1,24 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public interface ConjunctionEvaluator<R, PARAMC> extends LogicEvaluator<R, PARAMC> {
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public interface ConjunctionEvaluator<R, PARAMC> extends LogicEvaluator<R, PARAMC> {
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/DisjunctionEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/DisjunctionEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/DisjunctionEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/DisjunctionEvaluator.java Thu May 22 16:25:57 2008
@@ -1,24 +1,24 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public interface DisjunctionEvaluator<R, PARAMC> extends LogicEvaluator<R, PARAMC> {
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public interface DisjunctionEvaluator<R, PARAMC> extends LogicEvaluator<R, PARAMC> {
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/EqualityEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/EqualityEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/EqualityEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/EqualityEvaluator.java Thu May 22 16:25:57 2008
@@ -1,24 +1,24 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public interface EqualityEvaluator<ID, R, PARAMC> extends CMPEvaluator<ID, R, PARAMC> {
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public interface EqualityEvaluator<ID, R, PARAMC> extends CMPEvaluator<ID, R, PARAMC> {
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/GEEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/GEEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/GEEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/GEEvaluator.java Thu May 22 16:25:57 2008
@@ -1,24 +1,24 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public interface GEEvaluator<ID, R, PARAMC> extends CMPEvaluator<ID, R, PARAMC> {
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public interface GEEvaluator<ID, R, PARAMC> extends CMPEvaluator<ID, R, PARAMC> {
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/GreaterEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/GreaterEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/GreaterEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/GreaterEvaluator.java Thu May 22 16:25:57 2008
@@ -1,24 +1,24 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public interface GreaterEvaluator<ID, R, PARAMC> extends CMPEvaluator<ID, R, PARAMC> {
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public interface GreaterEvaluator<ID, R, PARAMC> extends CMPEvaluator<ID, R, PARAMC> {
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/INEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/INEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/INEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/INEvaluator.java Thu May 22 16:25:57 2008
@@ -1,24 +1,24 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public interface INEvaluator<ID, R, PARAMC> extends CMPEvaluator<ID, R, PARAMC> {
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public interface INEvaluator<ID, R, PARAMC> extends CMPEvaluator<ID, R, PARAMC> {
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/Identified.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/Identified.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/Identified.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/Identified.java Thu May 22 16:25:57 2008
@@ -1,25 +1,25 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public interface Identified<ID> {
-    public ID getIdentifier();
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public interface Identified<ID> {
+    public ID getIdentifier();
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LEEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LEEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LEEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LEEvaluator.java Thu May 22 16:25:57 2008
@@ -1,24 +1,24 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public interface LEEvaluator<ID, R, PARAMC> extends CMPEvaluator<ID, R, PARAMC> {
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public interface LEEvaluator<ID, R, PARAMC> extends CMPEvaluator<ID, R, PARAMC> {
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LessEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LessEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LessEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LessEvaluator.java Thu May 22 16:25:57 2008
@@ -1,24 +1,24 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public interface LessEvaluator<ID, R, PARAMC> extends CMPEvaluator<ID, R, PARAMC> {
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public interface LessEvaluator<ID, R, PARAMC> extends CMPEvaluator<ID, R, PARAMC> {
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LikeEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LikeEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LikeEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LikeEvaluator.java Thu May 22 16:25:57 2008
@@ -1,24 +1,24 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public interface LikeEvaluator<ID, R, PARAMC> extends CMPEvaluator<ID, R, PARAMC> {
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public interface LikeEvaluator<ID, R, PARAMC> extends CMPEvaluator<ID, R, PARAMC> {
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LogicEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LogicEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LogicEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/LogicEvaluator.java Thu May 22 16:25:57 2008
@@ -1,24 +1,24 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public interface LogicEvaluator<R, PARAMC> extends CommandEvaluator<R, PARAMC>, CommandContainer {
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public interface LogicEvaluator<R, PARAMC> extends CommandEvaluator<R, PARAMC>, CommandContainer {
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/NestedCommandEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/NestedCommandEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/NestedCommandEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/NestedCommandEvaluator.java Thu May 22 16:25:57 2008
@@ -1,24 +1,24 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public interface NestedCommandEvaluator<R, PARAMC> extends CommandEvaluator<R, PARAMC> {
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public interface NestedCommandEvaluator<R, PARAMC> extends CommandEvaluator<R, PARAMC> {
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/OrderByEvaluator.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/OrderByEvaluator.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/OrderByEvaluator.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/eval/skel/OrderByEvaluator.java Thu May 22 16:25:57 2008
@@ -1,24 +1,24 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.eval.skel;
-
-public interface OrderByEvaluator<R, PARAMC> extends CommandEvaluator<R, PARAMC> {
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.eval.skel;
+
+public interface OrderByEvaluator<R, PARAMC> extends CommandEvaluator<R, PARAMC> {
+
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTField.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTField.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTField.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTField.java Thu May 22 16:25:57 2008
@@ -1,42 +1,42 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.jcc;
-
-public class ASTField extends SimpleNode {
-    protected String name;
-
-    public ASTField(int id) {
-        super(id);
-    }
-    /**
-     * @return the name
-     */
-    public String getName() {
-        return name;
-    }
-
-    /**
-     * @param name the name to set
-     */
-    public void setName(String name) {
-        this.name = name;
-    }
-    
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.jcc;
+
+public class ASTField extends SimpleNode {
+    protected String name;
+
+    public ASTField(int id) {
+        super(id);
+    }
+    /**
+     * @return the name
+     */
+    public String getName() {
+        return name;
+    }
+
+    /**
+     * @param name the name to set
+     */
+    public void setName(String name) {
+        this.name = name;
+    }
+    
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTLimit.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTLimit.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTLimit.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTLimit.java Thu May 22 16:25:57 2008
@@ -1,50 +1,50 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.jcc;
-
-public class ASTLimit extends SimpleNode {
-    private int number;
-    
-    public ASTLimit(int id) {
-        super(id);
-    }
-
-    /**
-     * @return the number
-     */
-    public int getNumber() {
-        return number;
-    }
-
-    /**
-     * @param number the number to set
-     */
-    public void setNumber(int number) {
-        this.number = number;
-    }
-    
-    /**
-     * @param number the number to set
-     */
-    public void setNumber(String number) {
-        this.number = Integer.parseInt(number);
-    }
-    
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.jcc;
+
+public class ASTLimit extends SimpleNode {
+    private int number;
+    
+    public ASTLimit(int id) {
+        super(id);
+    }
+
+    /**
+     * @return the number
+     */
+    public int getNumber() {
+        return number;
+    }
+
+    /**
+     * @param number the number to set
+     */
+    public void setNumber(int number) {
+        this.number = number;
+    }
+    
+    /**
+     * @param number the number to set
+     */
+    public void setNumber(String number) {
+        this.number = Integer.parseInt(number);
+    }
+    
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTOrderBy.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTOrderBy.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTOrderBy.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTOrderBy.java Thu May 22 16:25:57 2008
@@ -1,42 +1,42 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.jcc;
-
-public class ASTOrderBy extends SimpleNode {
-    protected String name;
-
-    public ASTOrderBy(int id) {
-        super(id);
-    }
-    /**
-     * @return the name
-     */
-    public String getName() {
-        return name;
-    }
-
-    /**
-     * @param name the name to set
-     */
-    public void setName(String name) {
-        this.name = name;
-    }
-    
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.jcc;
+
+public class ASTOrderBy extends SimpleNode {
+    protected String name;
+
+    public ASTOrderBy(int id) {
+        super(id);
+    }
+    /**
+     * @return the name
+     */
+    public String getName() {
+        return name;
+    }
+
+    /**
+     * @param name the name to set
+     */
+    public void setName(String name) {
+        this.name = name;
+    }
+    
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTOrderType.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTOrderType.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTOrderType.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTOrderType.java Thu May 22 16:25:57 2008
@@ -1,44 +1,44 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.jcc;
-
-public class ASTOrderType extends SimpleNode {
-    protected String value;
-
-    public ASTOrderType(int id) {
-        super(id);
-    }
-
-    /**
-     * @return the value
-     */
-    public String getValue() {
-        return value;
-    }
-
-    /**
-     * @param value the value to set
-     */
-    public void setValue(String value) {
-        this.value = value;
-    }
-    
-    
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.jcc;
+
+public class ASTOrderType extends SimpleNode {
+    protected String value;
+
+    public ASTOrderType(int id) {
+        super(id);
+    }
+
+    /**
+     * @return the value
+     */
+    public String getValue() {
+        return value;
+    }
+
+    /**
+     * @param value the value to set
+     */
+    public void setValue(String value) {
+        this.value = value;
+    }
+    
+    
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTProperty.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTProperty.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTProperty.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTProperty.java Thu May 22 16:25:57 2008
@@ -1,42 +1,42 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.jcc;
-
-import javax.xml.namespace.QName;
-
-public class ASTProperty extends SimpleNode {
-    protected QName name;
-
-    public ASTProperty(int id) {
-        super(id);
-    }
-
-    public void setName(String value) {
-        name = QName.valueOf(value.substring(1));
-    }
-
-    /**
-     * @return the name
-     */
-    public QName getName() {
-        return name;
-    }
-   
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.jcc;
+
+import javax.xml.namespace.QName;
+
+public class ASTProperty extends SimpleNode {
+    protected QName name;
+
+    public ASTProperty(int id) {
+        super(id);
+    }
+
+    public void setName(String value) {
+        name = QName.valueOf(value.substring(1));
+    }
+
+    /**
+     * @return the name
+     */
+    public QName getName() {
+        return name;
+    }
+   
+}

Modified: ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTValue.java
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTValue.java?rev=659307&r1=659306&r2=659307&view=diff
==============================================================================
--- ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTValue.java (original)
+++ ode/trunk/bpel-ql/src/main/java/org/apache/ode/ql/jcc/ASTValue.java Thu May 22 16:25:57 2008
@@ -1,44 +1,44 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.ode.ql.jcc;
-
-public class ASTValue extends SimpleNode {
-    protected String value;
-
-    public ASTValue(int id) {
-        super(id);
-    }
-
-    /**
-     * @return the value
-     */
-    public String getValue() {
-        return value;
-    }
-
-    /**
-     * @param value the value to set
-     */
-    public void setValue(String value) {
-        //TODO
-        this.value = value.substring(1, value.length()-1);
-    }
-    
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.ql.jcc;
+
+public class ASTValue extends SimpleNode {
+    protected String value;
+
+    public ASTValue(int id) {
+        super(id);
+    }
+
+    /**
+     * @return the value
+     */
+    public String getValue() {
+        return value;
+    }
+
+    /**
+     * @param value the value to set
+     */
+    public void setValue(String value) {
+        //TODO
+        this.value = value.substring(1, value.length()-1);
+    }
+    
+}