Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1004 → Rev 1005

/zpath/trunk/src/ak/zpath/PathCondition.java
0,0 → 1,69
package ak.zpath;
 
public class PathCondition
{
private int firstOperandType;
private String firstOperandValue;
private int secondOperandType;
private String secondOperandValue;
private int operationType;
 
public int getFirstOperandType()
{
return firstOperandType;
}
 
public void setFirstOperandType(int operandType)
{
firstOperandType = operandType;
}
 
public String getFirstOperandValue()
{
return firstOperandValue;
}
 
public void setFirstOperandValue(String value)
{
firstOperandValue = value;
}
 
public int getOperation()
{
return operationType;
}
 
public void setOperation(int operationType)
{
this.operationType = operationType;
}
 
public int getSecondOperandType()
{
return secondOperandType;
}
 
public void setSecondOperandType(int operandType)
{
secondOperandType = operandType;
}
 
public String getSecondOperandValue()
{
return secondOperandValue;
}
 
public void setSecondOperandValue(String value)
{
secondOperandValue = value;
}
 
public void validateCondition()
{
}
 
public String toString()
{
return "Condition";
}
}