aboutsummaryrefslogtreecommitdiff
path: root/velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/ASTLTNode.java
diff options
context:
space:
mode:
authorAndrew Vuong <akvuong@google.com>2023-02-14 19:53:46 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-02-14 19:53:46 +0000
commiteabfc4b86246fe77090ac2a4594eef472766c753 (patch)
tree3813a8a6c4402b036011aeb82ba7597aac31b33a /velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/ASTLTNode.java
parentbc4c7a291f1579e1b6b903dc43b707a755577565 (diff)
parent31f36d06e129f44025af7a07974a688bf294329d (diff)
downloadapache-velocity-engine-eabfc4b86246fe77090ac2a4594eef472766c753.tar.gz
Initial import of apache-velocity-engine from upstream master am: 31f36d06e1
Original change: https://android-review.googlesource.com/c/platform/external/apache-velocity-engine/+/2434334 Change-Id: Ib46a9892a5a4c948eb063b60b4bcaa4656ef7e9b Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/ASTLTNode.java')
-rw-r--r--velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/ASTLTNode.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/ASTLTNode.java b/velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/ASTLTNode.java
new file mode 100644
index 00000000..a4a43465
--- /dev/null
+++ b/velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/ASTLTNode.java
@@ -0,0 +1,51 @@
+package org.apache.velocity.runtime.parser.node;
+
+/*
+ * 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.
+ */
+
+import org.apache.velocity.runtime.parser.Parser;
+
+/**
+ * Handles arg1 &lt; arg2<br><br>
+ */
+public class ASTLTNode extends ASTComparisonNode
+{
+ public ASTLTNode(int id)
+ {
+ super(id);
+ }
+
+ public ASTLTNode(Parser p, int id)
+ {
+ super(p, id);
+ }
+
+ @Override
+ public String getLiteralOperator()
+ {
+ return "<";
+ }
+
+ @Override
+ public boolean numberTest(int compareResult)
+ {
+ return compareResult == -1;
+ }
+
+}