Home | History | Annotate | Download | only in iso

Lines Matching refs:constructor

24 import java.lang.reflect.Constructor;
118 Constructor<AbstractBox> constructorObject;
165 String constructor;
170 constructor = mapping.getProperty((parent) + "-uuid[" + Hex.encodeHex(userType).toUpperCase() + "]");
171 if (constructor == null) {
172 constructor = mapping.getProperty("uuid[" + Hex.encodeHex(userType).toUpperCase() + "]");
174 if (constructor == null) {
175 constructor = mapping.getProperty("uuid");
178 constructor = mapping.getProperty((parent) + "-" + (type));
179 if (constructor == null) {
180 constructor = mapping.getProperty((type));
183 if (constructor == null) {
184 constructor = mapping.getProperty("default");
186 if (constructor == null) {
189 Matcher m = p.matcher(constructor);
192 throw new RuntimeException("Cannot work with that constructor: " + constructor);