MCPcopy Create free account
hub / github.com/beanshell/beanshell / parseConstructors

Method parseConstructors

src/bsh/util/ClassBrowser.java:119–128  ·  view source on GitHub ↗
( Constructor [] constructors )

Source from the content-addressed store, hash-verified

117 }
118
119 String [] parseConstructors( Constructor [] constructors ) {
120 String [] sa = new String [ constructors.length ] ;
121 for(int i=0; i< sa.length; i++) {
122 Constructor con = constructors[i];
123 sa[i] = StringUtil.methodString(
124 con.getName(), con.getParameterTypes() );
125 }
126 //return bubbleSort(sa);
127 return sa;
128 }
129
130 String [] parseMethods( Method [] methods ) {
131 String [] sa = new String [ methods.length ] ;

Callers 1

setConslistMethod · 0.95

Calls 3

methodStringMethod · 0.95
getNameMethod · 0.45
getParameterTypesMethod · 0.45

Tested by

no test coverage detected