Home
last modified time | relevance | path

Searched refs:objectTypeName (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/config/
DConfigurationXmlParser.java110 final String objectTypeName = attributes.getValue("type"); in startElement() local
111 if (objectTypeName == null) { in startElement()
115 if (GlobalConfiguration.isBuiltInObjType(objectTypeName) || in startElement()
116 Configuration.isBuiltInObjType(objectTypeName)) { in startElement()
118 + "cannot be type '%s' this is a reserved type.", objectTypeName))); in startElement()
120 addObject(objectTypeName, attributes); in startElement()
304 void addObject(String objectTypeName, Attributes attributes) throws SAXException { in addObject() argument
305 if (Configuration.DEVICE_NAME.equals(objectTypeName)) { in addObject()
315 mConfigDef.addConfigObjectDef(objectTypeName, in addObject()
326 objectTypeName)); in addObject()
[all …]
DConfigurationDef.java453 private Object createObject(String objectTypeName, String className) in createObject() argument
456 Class<?> objectClass = getClassForObject(objectTypeName, className); in createObject()
458 checkObjectValid(objectTypeName, configObject); in createObject()
463 objectTypeName), e); in createObject()
467 objectTypeName), e); in createObject()
480 private Class<?> getClassForObject(String objectTypeName, String className) in getClassForObject() argument
489 className, objectTypeName), in getClassForObject()
492 objectTypeName); in getClassForObject()
507 private void checkObjectValid(String objectTypeName, Object configObject) in checkObjectValid() argument
509 if (Configuration.RESULT_REPORTER_TYPE_NAME.equals(objectTypeName) in checkObjectValid()
DGlobalConfiguration.java741 private String printOptionsForObject(boolean importantOnly, String objectTypeName, in printOptionsForObject() argument
DConfiguration.java1265 private String printOptionsForObject(boolean importantOnly, String objectTypeName, in printOptionsForObject() argument