Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1006 → Rev 1007

/zpath/trunk/src/ak/zpath/PathElement.java
13,10 → 13,11
public static final int OPERATION_ASSIGN = 5;
public static final int OPERATION_EQUAL = 6;
public static final int OPERATION_APPEND = 7;
public static final int OPERATION_EXIST = 8;
 
private String name;
private boolean isNew = false;
private int index = -1;
private int index = 0;
private List conditions = new ArrayList();
private PathCondition condition;
private int firstOperandType = OPERAND_NONE;