src/share/classes/java/awt/Label.java

Print this page

        

@@ -192,10 +192,11 @@
 
     /**
      * Gets the current alignment of this label. Possible values are
      * <code>Label.LEFT</code>, <code>Label.RIGHT</code>, and
      * <code>Label.CENTER</code>.
+     * @return the alignment of this label
      * @see        java.awt.Label#setAlignment
      */
     public int getAlignment() {
         return alignment;
     }

@@ -320,10 +321,13 @@
         /*
          * JDK 1.3 serialVersionUID
          */
         private static final long serialVersionUID = -3568967560160480438L;
 
+        /**
+         * Constructor for the accessible label.
+         */
         public AccessibleAWTLabel() {
             super();
         }
 
         /**