Home | History | Annotate | Download | only in manifest

Lines Matching refs:attributes

14   private final Map<String, String> attributes;
19 Map<String, String> attributes, MetaData metaData, List<IntentFilterData> intentFilters) {
20 super(attributes.get(NAME), metaData);
21 this.attributes = attributes;
29 this.attributes = new HashMap<>();
42 attributes.put(PERMISSION, permission);
46 return attributes.get(PERMISSION);
59 * Get the map for all attributes defined for the broadcast receiver.
61 * @return map of attributes names to values from the manifest.
64 return attributes;
74 return (attributes.containsKey(EXPORTED)
75 ? Boolean.parseBoolean(attributes.get(EXPORTED))