diff options
Diffstat (limited to 'javax/swing/InputVerifier.java')
-rw-r--r-- | javax/swing/InputVerifier.java | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/javax/swing/InputVerifier.java b/javax/swing/InputVerifier.java index ccd13d285..8e02ab813 100644 --- a/javax/swing/InputVerifier.java +++ b/javax/swing/InputVerifier.java @@ -15,8 +15,8 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Classpath; see the file COPYING. If not, write to the -Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA -02111-1307 USA. +Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +02110-1301 USA. Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and @@ -39,9 +39,12 @@ package javax.swing; /** - * InputVerifier + * Verifies the user input on a component before the focus is shifted. + * It is sometimes necessary that input components have a valid state before + * they loose focus. Such components can have a <code>InputVerifier</code> + * subclass registered, that permits or vetos a focus change request. + * * @author Andrew Selkirk - * @version 1.0 */ public abstract class InputVerifier { |