Lines Matching refs:getValue

73           new PackageInfo(attributes.getValue("name"), SourcePositionInfo.fromXml(attributes
74 .getValue("source")));
82 SourcePositionInfo position = SourcePositionInfo.fromXml(attributes.getValue("source"));
83 String visibility = attributes.getValue("visibility");
88 boolean isStatic = Boolean.valueOf(attributes.getValue("static"));
90 boolean isAbstract = Boolean.valueOf(attributes.getValue("abstract"));
96 boolean isFinal = Boolean.valueOf(attributes.getValue("final"));
98 String name = attributes.getValue("name");
109 mCurrentClass.setDeprecated("deprecated".equals(attributes.getValue("deprecated")));
111 String superclass = attributes.getValue("extends");
125 String name = attributes.getValue("name");
129 String visibility = attributes.getValue("visibility");
134 boolean isFinal = Boolean.valueOf(attributes.getValue("final"));
135 boolean isStatic = Boolean.valueOf(attributes.getValue("static"));
137 boolean isAbstract = Boolean.valueOf(attributes.getValue("abstract"));
138 boolean isSynchronized = Boolean.valueOf(attributes.getValue("synchronized"));
139 boolean isNative = Boolean.valueOf(attributes.getValue("native"));
144 TypeInfo returnType = Converter.obtainTypeFromString(attributes.getValue("return"));
147 SourcePositionInfo position = SourcePositionInfo.fromXml(attributes.getValue("source"));
157 mCurrentMethod.setDeprecated("deprecated".equals(attributes.getValue("deprecated")));
159 final boolean pub = "public".equals(attributes.getValue("visibility"));
160 final boolean prot = "protected".equals(attributes.getValue("visibility"));
161 final boolean pkgpriv = "".equals(attributes.getValue("visibility"));
164 attributes.getValue("name"), null/*signature*/, mCurrentClass, mCurrentClass,
170 SourcePositionInfo.fromXml(attributes.getValue("source")),
172 mCurrentMethod.setDeprecated("deprecated".equals(attributes.getValue("deprecated")));
174 String visibility = attributes.getValue("visibility");
179 String typeName = attributes.getValue("type");
184 value = ApiFile.parseValue(typeName, attributes.getValue("value"));
190 new FieldInfo(attributes.getValue("name"), mCurrentClass, mCurrentClass, isPublic,
191 isProtected, isPackagePrivate, isPrivate, Boolean.valueOf(attributes.getValue("final")),
192 Boolean.valueOf(attributes.getValue("static")), Boolean.valueOf(attributes.
193 getValue("transient")), Boolean.valueOf(attributes.getValue("volatile")), false,
194 type, "", value, SourcePositionInfo.fromXml(attributes.getValue("source")),
197 fInfo.setDeprecated("deprecated".equals(attributes.getValue("deprecated")));
200 String name = attributes.getValue("name");
201 String typeName = attributes.getValue("type");
209 mCurrentMethod.addException(attributes.getValue("type"));
212 mApi.mapClassToInterface(mCurrentClass, attributes.getValue("name"));