Lines Matching refs:attributes
73 java.lang.String qName, Attributes attributes) { in startElement() argument
78 String apiName = attributes.getValue("name"); in startElement()
79 String version = attributes.getValue("jdversion"); // Not used yet in startElement()
83 String pkgName = attributes.getValue("name"); in startElement()
87 String className = attributes.getValue("name"); in startElement()
88 String parentName = attributes.getValue("extends"); in startElement()
90 if (attributes.getValue("abstract").compareTo("true") == 0) in startElement()
92 XMLToAPI.addClass(className, parentName, isAbstract, getModifiers(attributes)); in startElement()
95 String className = attributes.getValue("name"); in startElement()
96 String parentName = attributes.getValue("extends"); in startElement()
98 if (attributes.getValue("abstract").compareTo("true") == 0) in startElement()
100 XMLToAPI.addInterface(className, parentName, isAbstract, getModifiers(attributes)); in startElement()
102 String interfaceName = attributes.getValue("name"); in startElement()
106 String ctorName = attributes.getValue("name"); in startElement()
107 String ctorType = attributes.getValue("type"); in startElement()
108 XMLToAPI.addCtor(ctorName, ctorType, getModifiers(attributes)); in startElement()
111 String methodName = attributes.getValue("name"); in startElement()
112 String returnType = attributes.getValue("return"); in startElement()
114 if (attributes.getValue("abstract").compareTo("true") == 0) in startElement()
117 if (attributes.getValue("native").compareTo("true") == 0) in startElement()
120 if (attributes.getValue("synchronized").compareTo("true") == 0) in startElement()
123 isSynchronized, getModifiers(attributes)); in startElement()
126 String fieldName = attributes.getValue("name"); in startElement()
127 String fieldType = attributes.getValue("type"); in startElement()
129 if (attributes.getValue("transient").compareTo("true") == 0) in startElement()
132 if (attributes.getValue("volatile").compareTo("true") == 0) in startElement()
134 String value = attributes.getValue("value"); in startElement()
136 value, getModifiers(attributes)); in startElement()
138 String paramName = attributes.getValue("name"); in startElement()
139 String paramType = attributes.getValue("type"); in startElement()
142 String paramName = attributes.getValue("name"); in startElement()
143 String paramType = attributes.getValue("type"); in startElement()
151 addStartTagToText(localName, attributes); in startElement()
275 public void addStartTagToText(String localName, Attributes attributes) { in addStartTagToText() argument
282 int len = attributes.getLength(); in addStartTagToText()
284 String name = attributes.getLocalName(i); in addStartTagToText()
285 String value = attributes.getValue(i); in addStartTagToText()
313 public Modifiers getModifiers(Attributes attributes) { in getModifiers() argument
316 if (attributes.getValue("static").compareTo("true") == 0) in getModifiers()
319 if (attributes.getValue("final").compareTo("true") == 0) in getModifiers()
322 String cdt = attributes.getValue("deprecated"); in getModifiers()
333 modifiers.visibility = attributes.getValue("visibility"); in getModifiers()