classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] FYI: Basic look and feel - getPropertyPrefix() API docs


From: David Gilbert
Subject: [cp-patches] FYI: Basic look and feel - getPropertyPrefix() API docs
Date: Wed, 14 Sep 2005 09:02:14 +0000
User-agent: Mozilla Thunderbird 1.0.6 (X11/20050728)

I committed this patch (just API doc additions):

2005-09-14  David Gilbert  <address@hidden>

        * javax/swing/plaf/basic/BasicFormattedTextFieldUI.java:
        (getPropertyPrefix): added API docs,
        * javax/swing/plaf/basic/BasicPasswordFieldUI.java:
        (getPropertyPrefix): added API docs,
        * javax/swing/plaf/basic/BasicTextAreaUI.java:
        (getPropertyPrefix): added API docs,
        * javax/swing/plaf/basic/BasicTextFieldUI.java:
        (getPropertyPrefix): added API docs,
        * javax/swing/plaf/basic/BasicTextPaneUI.java:
        (getPropertyPrefix): added API docs.

Regards,

Dave

Index: javax/swing/plaf/basic/BasicFormattedTextFieldUI.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/javax/swing/plaf/basic/BasicFormattedTextFieldUI.java,v
retrieving revision 1.2
diff -u -r1.2 BasicFormattedTextFieldUI.java
--- javax/swing/plaf/basic/BasicFormattedTextFieldUI.java       2 Jul 2005 
20:32:50 -0000       1.2
+++ javax/swing/plaf/basic/BasicFormattedTextFieldUI.java       14 Sep 2005 
07:53:24 -0000
@@ -1,5 +1,5 @@
 /* BasicFormattedTextFieldUI.java
-   Copyright (C) 2004  Free Software Foundation, Inc.
+   Copyright (C) 2004, 2005  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,6 +39,7 @@
 package javax.swing.plaf.basic;
 
 import javax.swing.JComponent;
+import javax.swing.UIDefaults;
 import javax.swing.plaf.ComponentUI;
 
 /**
@@ -55,6 +56,11 @@
     return new BasicFormattedTextFieldUI();
   }
 
+  /**
+   * Returns the prefix for entries in the address@hidden UIDefaults} table.
+   *
+   * @return "FormattedTextField"
+   */
   protected String getPropertyPrefix()
   {
     return "FormattedTextField";
Index: javax/swing/plaf/basic/BasicPasswordFieldUI.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/javax/swing/plaf/basic/BasicPasswordFieldUI.java,v
retrieving revision 1.3
diff -u -r1.3 BasicPasswordFieldUI.java
--- javax/swing/plaf/basic/BasicPasswordFieldUI.java    2 Jul 2005 20:32:50 
-0000       1.3
+++ javax/swing/plaf/basic/BasicPasswordFieldUI.java    14 Sep 2005 07:53:24 
-0000
@@ -39,6 +39,7 @@
 package javax.swing.plaf.basic;
 
 import javax.swing.JComponent;
+import javax.swing.UIDefaults;
 import javax.swing.plaf.ComponentUI;
 import javax.swing.text.Element;
 import javax.swing.text.PasswordView;
@@ -60,6 +61,11 @@
     return new BasicPasswordFieldUI();
   }
 
+  /**
+   * Returns the prefix for entries in the address@hidden UIDefaults} table.
+   *
+   * @return "PasswordField"
+   */
   protected String getPropertyPrefix()
   {
     return "PasswordField";
Index: javax/swing/plaf/basic/BasicTextAreaUI.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/javax/swing/plaf/basic/BasicTextAreaUI.java,v
retrieving revision 1.3
diff -u -r1.3 BasicTextAreaUI.java
--- javax/swing/plaf/basic/BasicTextAreaUI.java 2 Jul 2005 20:32:50 -0000       
1.3
+++ javax/swing/plaf/basic/BasicTextAreaUI.java 14 Sep 2005 07:53:25 -0000
@@ -40,6 +40,7 @@
 
 
 import javax.swing.JComponent;
+import javax.swing.UIDefaults;
 import javax.swing.plaf.ComponentUI;
 import javax.swing.text.Element;
 import javax.swing.text.PlainView;
@@ -61,6 +62,11 @@
     return new PlainView(elem);
   }
 
+  /**
+   * Returns the prefix for entries in the address@hidden UIDefaults} table.
+   *
+   * @return "TextArea"
+   */
   protected String getPropertyPrefix()
   {
     return "TextArea";
Index: javax/swing/plaf/basic/BasicTextFieldUI.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/javax/swing/plaf/basic/BasicTextFieldUI.java,v
retrieving revision 1.3
diff -u -r1.3 BasicTextFieldUI.java
--- javax/swing/plaf/basic/BasicTextFieldUI.java        2 Jul 2005 20:32:50 
-0000       1.3
+++ javax/swing/plaf/basic/BasicTextFieldUI.java        14 Sep 2005 07:53:25 
-0000
@@ -41,6 +41,7 @@
 import java.beans.PropertyChangeEvent;
 
 import javax.swing.JComponent;
+import javax.swing.UIDefaults;
 import javax.swing.plaf.ComponentUI;
 import javax.swing.text.Element;
 import javax.swing.text.FieldView;
@@ -63,6 +64,11 @@
     return new BasicTextFieldUI();
   }
 
+  /**
+   * Returns the prefix for entries in the address@hidden UIDefaults} table.
+   *
+   * @return "TextField"
+   */
   protected String getPropertyPrefix()
   {
     return "TextField";
Index: javax/swing/plaf/basic/BasicTextPaneUI.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/javax/swing/plaf/basic/BasicTextPaneUI.java,v
retrieving revision 1.4
diff -u -r1.4 BasicTextPaneUI.java
--- javax/swing/plaf/basic/BasicTextPaneUI.java 2 Jul 2005 20:32:50 -0000       
1.4
+++ javax/swing/plaf/basic/BasicTextPaneUI.java 14 Sep 2005 07:53:25 -0000
@@ -39,6 +39,7 @@
 package javax.swing.plaf.basic;
 
 import javax.swing.JComponent;
+import javax.swing.UIDefaults;
 import javax.swing.plaf.ComponentUI;
 import javax.swing.text.Element;
 import javax.swing.text.PlainView;
@@ -61,6 +62,11 @@
     return new PlainView(elem);
   }
 
+  /**
+   * Returns the prefix for entries in the address@hidden UIDefaults} table.
+   *
+   * @return "TextPane"
+   */
   protected String getPropertyPrefix()
   {
     return "TextPane";

reply via email to

[Prev in Thread] Current Thread [Next in Thread]