Home | History | Annotate | Download | only in layout

Lines Matching refs:Prop

84     private static final String PROP_PREFIX = "@prop@"; //$NON-NLS-1$
92 private Map<String, Map<String, Prop>> mAttributesMap =
93 new HashMap<String, Map<String, Prop>>();
202 Map<String, Prop> props = mAttributesMap.get(key);
203 final Prop prop = (props != null) ? props.get(actionId) : null;
205 if (prop != null) {
215 if (prop.isStringEdit()) {
243 if (prop.isToggle()) {
252 } else if (prop.isFlag()) {
283 } else if (prop.isEnum()) {
291 assert prop.isStringEdit();
544 Map<String, Prop> properties = getPropertyMetadata(selectedNode);
556 Prop property = properties.get(attribute);
592 Map<String, Prop> properties = getPropertyMetadata(selectedNode);
594 Prop property = properties.get(attribute);
610 Map<String, Prop> properties = getPropertyMetadata(selectedNode);
613 for (Map.Entry<String, Prop> entry : properties.entrySet()) {
615 Prop property = entry.getValue();
646 private RuleAction createPropertyAction(Prop p, String id, String title, INode selectedNode,
689 private Map<String, Prop> getPropertyMetadata(final INode selectedNode) {
691 Map<String, Prop> props = mAttributesMap.get(key);
694 props = new HashMap<String, Prop>();
710 props.put(id, new Prop(title, true, definedBy));
720 props.put(id, new Prop(title, false, false, values, definedBy));
730 props.put(id, new Prop(title, false, true, values, definedBy));
732 props.put(id, new Prop(title + "...", false, definedBy));
764 * attribute values available for a given {@link Prop} property descriptor.
767 private Prop mProperty;
769 public EnumPropertyChoiceProvider(Prop property) {
911 private static class Prop {
918 public Prop(String title, boolean isToggle, boolean isFlag, Map<String, String> choices,
931 public Prop(String title, boolean isToggle, String definedBy) {