Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1006 → Rev 1007

/zpath/trunk/src/ak/zpath/PathCondition.java
2,11 → 2,11
 
public class PathCondition
{
private int firstOperandType;
private int firstOperandType = PathElement.OPERAND_NONE;
private String firstOperandValue;
private int secondOperandType;
private int secondOperandType = PathElement.OPERAND_NONE;
private String secondOperandValue;
private int operationType;
private int operationType = PathElement.OPERATION_EXIST;
 
public int getFirstOperandType()
{