1 23 package org.objectweb.jorm.metainfo.lib; 24 25 import org.objectweb.jorm.metainfo.api.MetaObject; 26 27 import java.util.HashMap ; 28 29 public class Predicate extends BasicMetaObject { 30 31 34 private String op = null; 35 36 private String value = null; 37 38 45 public Predicate(String op, String value, MetaObject parent) { 46 super(parent); 47 this.op = op; 48 this.value = value; 49 } 50 51 public String getOperator() { 52 return this.op; 53 } 54 55 public String getValue() { 56 return this.value; 57 } 58 } 59 | Popular Tags |