Lines Matching defs:input
39 * attach an instance of their subclass to the <code>JComponent</code> whose input they
41 * that requests it, the input verifier's <code>shouldYieldFocus</code> method is
59 * // string "pass" as input, and will allow focus to advance out of it
80 * public boolean verify(JComponent input) {
81 * JTextField tf = (JTextField) input;
101 * Checks whether the JComponent's input is valid. This method should
103 * of the argument's input.
105 * @param input the JComponent to verify
112 public abstract boolean verify(JComponent input);
116 * Calls <code>verify(input)</code> to ensure that the input is valid.
124 * @param input the JComponent to verify
131 public boolean shouldYieldFocus(JComponent input) {
132 return verify(input);