Home | History | Annotate | Download | only in manifest

Lines Matching refs:attributes

16   private final Map<String, String> attributes;
21 Map<String, String> attributes, MetaData metaData, List<IntentFilterData> intentFilters) {
22 super(attributes.get(NAME), metaData);
23 this.attributes = attributes;
37 attributes.put(PERMISSION, permission);
41 return attributes.get(PERMISSION);
54 * Get the map for all attributes defined for the service.
56 * @return map of attributes names to values from the manifest.
59 return attributes;
69 return (attributes.containsKey(EXPORTED)
70 ? Boolean.parseBoolean(attributes.get(EXPORTED))