Home | History | Annotate | Download | only in util

Lines Matching refs:value

18      * The value field
20 public T value;
27 return value == null ? "null" : value.toString();
38 * Constructs an <code>Output</code> with the given value.
39 * @param value the initial value
41 public Output(T value) {
42 this.value = value;