diff -r d2bfa69f5523 -r 561ed508292b jdk/src/share/classes/com/sun/beans/finder/Signature.java --- a/jdk/src/share/classes/com/sun/beans/finder/Signature.java Mon Nov 25 13:24:38 2013 -0800 +++ b/jdk/src/share/classes/com/sun/beans/finder/Signature.java Tue Nov 26 13:30:44 2013 +0400 @@ -62,6 +62,18 @@ this.args = args; } + Class getType() { + return this.type; + } + + String getName() { + return this.name; + } + + Class[] getArgs() { + return this.args; + } + /** * Indicates whether some other object is "equal to" this one. *