Home | History | Annotate | Download | only in java_cup

Lines Matching defs:label

4  *  production.  In this base class it contains only an optional label 
29 /** Optional label for referring to the part within an action (null for
30 * no label).
34 /** Optional label for referring to the part within an action (null for
35 * no label).
37 public String label() {return _label;}
56 if (label() != null)
57 return label().equals(other.label());
59 return other.label() == null;
78 return label()==null ? 0 : label().hashCode();
86 if (label() != null)
87 return label() + ":";