( Constructor [] constructors )
| 146 | } |
| 147 | |
| 148 | Constructor [] getPublicConstructors( Constructor [] constructors ) { |
| 149 | Vector v = new Vector(); |
| 150 | for(int i=0; i< constructors.length; i++) |
| 151 | if ( Modifier.isPublic(constructors[i].getModifiers()) ) |
| 152 | v.addElement( constructors[i] ); |
| 153 | |
| 154 | Constructor [] ca = new Constructor [ v.size() ]; |
| 155 | v.copyInto( ca ); |
| 156 | return ca; |
| 157 | } |
| 158 | |
| 159 | Method [] getPublicMethods( Method [] methods ) { |
| 160 | Vector v = new Vector(); |
no test coverage detected