jdk/src/java.desktop/share/classes/sun/print/DialogOwner.java
changeset 26037 508779ce6619
parent 26004 7507a1b93f67
parent 25859 3317bb8137f4
child 30948 0a0972d3b58d
equal deleted inserted replaced
25992:e9b05e933ddd 26037:508779ce6619
    71      * DialogOwner itself.
    71      * DialogOwner itself.
    72      *
    72      *
    73      * @return  Printing attribute class (category), an instance of class
    73      * @return  Printing attribute class (category), an instance of class
    74      *          {@link java.lang.Class java.lang.Class}.
    74      *          {@link java.lang.Class java.lang.Class}.
    75      */
    75      */
    76     public final Class<? extends Attribute> getCategory() {
    76     public Class<? extends Attribute> getCategory() {
    77         return DialogOwner.class;
    77         return DialogOwner.class;
    78     }
    78     }
    79 
    79 
    80 
    80 
    81     /**
    81     /**
    85      * For class DialogOwner the category name is
    85      * For class DialogOwner the category name is
    86      * <CODE>"dialog-owner"</CODE>.
    86      * <CODE>"dialog-owner"</CODE>.
    87      *
    87      *
    88      * @return  Attribute category name.
    88      * @return  Attribute category name.
    89      */
    89      */
    90     public final String getName() {
    90     public String getName() {
    91         return "dialog-owner";
    91         return "dialog-owner";
    92     }
    92     }
    93 
    93 
    94 }
    94 }