Home | History | Annotate | Download | only in streamhtmlparser

Lines Matching defs:name

46   private final String name;
51 * @param name the name to assign to that state
55 public ExternalState(String name) {
56 Preconditions.checkNotNull(name); // Developer error if it happens.
57 this.name = name;
61 * Returns the name of the object. The name is only needed
64 * @return the name of that object
67 return name;
76 return String.format("ExternalState: %s", name);