Home | History | Annotate | Download | only in data

Lines Matching defs:attributeList

63   private Map<String, String> attributeList = null;
212 if (attributeList == null) {
214 attributeList = new HashMap<String, String>();
217 attributeList.remove(key);
219 attributeList.put(key, value);
224 return attributeList == null ? null : attributeList.get(key);
228 return attributeList != null && attributeList.containsKey(key);
232 return attributeList == null ? 0 : attributeList.size();
236 if (attributeList == null) {
239 return attributeList.entrySet();
438 if (this.attributeList != null) {
439 this.attributeList.clear();
506 if (attributeList != null) {
507 Map<String, String> newList = new HashMap<String, String>(attributeList.size());
508 for (Map.Entry<String, String> entry : attributeList.entrySet()) {
515 attributeList = newList;
543 if (attributeList != null && !attributeList.isEmpty()) {
547 for (Map.Entry<String, String> attr : attributeList.entrySet()) {