//============================================================================== // // Copyright (c) 2002- // Authors: // * Dave Parker (University of Oxford) // //------------------------------------------------------------------------------ // // This file is part of PRISM. // // PRISM is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // PRISM is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with PRISM; if not, write to the Free Software Foundation, // Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // //============================================================================== package parser.ast; import parser.*; import parser.visitor.*; import prism.PrismLangException; /** * An expression "prop", representing a reference to another property. */ public class ExpressionProp extends Expression { private String name; // Constructor public ExpressionProp(String s) { name = s; } // Get Method public String getName() { return name; } // Methods required for Expression: @Override public boolean isConstant() { // Don't know - err on the side of caution return false; } @Override public boolean isProposition() { // Don't know - err on the side of caution return false; } @Override public Object evaluate(EvaluateContext ec) throws PrismLangException { throw new PrismLangException("Cannot evaluate property references", this); } @Override public boolean returnsSingleValue() { return false; } // Methods required for ASTElement: @Override public Object accept(ASTVisitor v) throws PrismLangException { return v.visit(this); } @Override public Expression deepCopy() { ExpressionProp expr = new ExpressionProp(name); expr.setType(type); expr.setPosition(this); return expr; } // Standard methods @Override public String toString() { return "\"" + name + "\""; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((name == null) ? 0 : name.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; ExpressionProp other = (ExpressionProp) obj; if (name == null) { if (other.name != null) return false; } else if (!name.equals(other.name)) return false; return true; } } //------------------------------------------------------------------------------