blob: 7615cec0262b12e9e7549009f8acad03ffe3677a [file] [log] [blame]
/**
* Copyright (c) 2007 - 2009 OptXware Research and Development LLC.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Daniel Varro - Initial API and implementation
*
* This file was generated automatically based upon the VTCL LPG Parser
* VTCLParser.g
*/
package org.eclipse.viatra2.lpgparser.ast;
import lpg.lpgjavaruntime.*;
/**
*<b>
*<li>Rule 39: CheckConditionAST ::= check LPAREN LogicalTermAST RPAREN
*</b>
*/
public class CheckConditionAST extends ASTNode implements ICheckConditionAST
{
private ILogicalTermAST _LogicalTermAST;
public ILogicalTermAST getLogicalTermAST() { return _LogicalTermAST; }
public CheckConditionAST(IToken leftIToken, IToken rightIToken,
ILogicalTermAST _LogicalTermAST)
{
super(leftIToken, rightIToken);
this._LogicalTermAST = _LogicalTermAST;
((ASTNode) _LogicalTermAST).setParent(this);
initialize();
}
public boolean equals(Object o)
{
if (o == this) return true;
//
// The supers call is not required for now because Ast nodes
// can only extend the root Ast, AstToken and AstList and none
// of these nodes contain children.
//
// if (! super.equals(o)) return false;
//
if (! (o instanceof CheckConditionAST)) return false;
CheckConditionAST other = (CheckConditionAST) o;
if (! _LogicalTermAST.equals(other.getLogicalTermAST())) return false;
return true;
}
public int hashCode()
{
int hash = 7;
hash = hash * 31 + (getLogicalTermAST().hashCode());
return hash;
}
public void accept(Visitor v) { v.visit(this); }
public void accept(ArgumentVisitor v, Object o) { v.visit(this, o); }
public Object accept(ResultVisitor v) { return v.visit(this); }
public Object accept(ResultArgumentVisitor v, Object o) { return v.visit(this, o); }
}