jdk/src/share/classes/com/sun/beans/finder/Signature.java
changeset 21793 561ed508292b
parent 5506 202f599c92aa
child 23010 6dadb192ad81
equal deleted inserted replaced
21792:d2bfa69f5523 21793:561ed508292b
    58      */
    58      */
    59     Signature(Class<?> type, String name, Class<?>[] args) {
    59     Signature(Class<?> type, String name, Class<?>[] args) {
    60         this.type = type;
    60         this.type = type;
    61         this.name = name;
    61         this.name = name;
    62         this.args = args;
    62         this.args = args;
       
    63     }
       
    64 
       
    65     Class<?> getType() {
       
    66         return this.type;
       
    67     }
       
    68 
       
    69     String getName() {
       
    70         return this.name;
       
    71     }
       
    72 
       
    73     Class<?>[] getArgs() {
       
    74         return this.args;
    63     }
    75     }
    64 
    76 
    65     /**
    77     /**
    66      * Indicates whether some other object is "equal to" this one.
    78      * Indicates whether some other object is "equal to" this one.
    67      *
    79      *