/tests/src/test/java/org/sigmah/endtoend/xpath/PredicateLiteral.java
http://sigma-h.googlecode.com/ · Java · 19 lines · 11 code · 4 blank · 4 comment · 0 complexity · 593a0e67a85e2896548e31b473831d70 MD5 · raw file
- /*
- * All Sigmah code is released under the GNU General Public License v3
- * See COPYRIGHT.txt and LICENSE.txt.
- */
-
- package org.sigmah.endtoend.xpath;
-
- public class PredicateLiteral implements Predicate {
- private String expression;
-
- public PredicateLiteral(String expression) {
- this.expression = expression;
- }
-
- @Override
- public String toString() {
- return this.expression;
- }
- }