Home | History | Annotate | Download | only in expected

Lines Matching defs:Label

28  * There are two types of expected visual, an integer icon id and a string label.
31 static ExpectedKeyVisual newInstance(final String label) {
32 return new Label(label);
99 * This class represents a string label.
101 private static class Label extends ExpectedKeyVisual {
104 Label(final String label) { mLabel = label; }
108 return new Label(mLabel.toUpperCase(locale));
138 return (visual instanceof Label) && mLabel.equals(((Label)visual).mLabel);
146 private static class CasePreservedLabel extends Label {
147 CasePreservedLabel(final String label) { super(label); }