Searched refs:Property (Results 1 - 25 of 146) sorted by relevance

123456

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/
H A DPropertyListIntersector.java15 import org.eclipse.wb.internal.core.model.property.Property;
22 * Helper for computing intersection of {@link Property} arrays.
38 public void intersect(Property[] properties) {
42 Property property = properties[i];
56 * @return the array of matched composite {@link Property}'s.
58 public Property[] getProperties() {
59 List<Property> properties = Lists.newArrayList();
61 Property compositeProperty = propertyGroup.getCompositeProperty();
67 return properties.toArray(new Property[properties.size()]);
76 * The group of {@link Property}'
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/complex/
H A DIComplexPropertyEditor.java13 import org.eclipse.wb.internal.core.model.property.Property;
26 Property[] getProperties(Property property) throws Exception;
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DCssSchema.java46 static final class Property { class in class:CssSchema
56 private Property( method in class:CssSchema.Property
73 static final Property DISALLOWED = new Property(
76 private final ImmutableMap<String, Property> properties;
78 private CssSchema(ImmutableMap<String, Property> properties) {
93 ImmutableMap.Builder<String, Property> propertiesBuilder =
96 Property prop = DEFINITIONS.get(propertyName);
111 Map<String, Property> properties = Maps.newLinkedHashMap();
128 Property forKe
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
H A DPropertyManager.java17 * {@link PropertyManager} is used to get/set attributes of {@link Property}.
23 public static PropertyCategory getCategory(Property property) {
31 * @return the forced {@link PropertyCategory} of given Property, may be <code>null</code>.
33 public static PropertyCategory getCategoryForced(Property property) {
H A DProperty.java22 * {@link Property} is used to display/change properties of ObjectInfo's.
27 public abstract class Property { class
29 * The value that should be used when we don't know real value of {@link Property}. We can not use
50 public Property(PropertyEditor editor) { method in class:Property
85 * Sets the {@link PropertyCategory} for this {@link Property}.
97 * @return the current value of this {@link Property} or {@link #UNKNOWN_VALUE}.
102 * Sets the new value of this {@link Property}.
105 * new value of {@link Property} or {@link #UNKNOWN_VALUE} if {@link Property}
128 * @return the composite {@link Property} fo
[all...]
H A DComplexProperty.java25 * Implementation of {@link Property} that shows given inner {@link Property}'s using
31 public class ComplexProperty extends Property {
36 private Property[] m_properties;
44 this(title, text, new Property[0]);
47 public ComplexProperty(String title, String text, Property[] properties) {
91 public Property[] getProperties() {
98 public void setProperties(Property[] properties) {
105 public void setProperties(List<Property> properties) {
106 Property[] propertiesArra
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
H A DPropertyCategoryProvider.java13 import org.eclipse.wb.internal.core.model.property.Property;
16 * This interface is used to get {@link PropertyCategory} for {@link Property}.
23 * @return the {@link PropertyCategory} of given Property, not <code>null</code>.
25 PropertyCategory getCategory(Property property);
H A DPropertyCategoryProviders.java13 import org.eclipse.wb.internal.core.model.property.Property;
29 public PropertyCategory getCategory(Property property) {
35 * Returns result of {@link Property#getCategory()}, never <code>null</code>.
42 public PropertyCategory getCategory(Property property) {
64 public PropertyCategory getCategory(Property property) {
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DITextValuePropertyEditor.java13 import org.eclipse.wb.internal.core.model.property.Property;
25 void setText(Property property, String text) throws Exception;
H A DStringComboPropertyEditor.java14 import org.eclipse.wb.internal.core.model.property.Property;
40 protected String getText(Property property) throws Exception {
50 protected void addItems(Property property, CCombo3 combo) throws Exception {
57 protected void selectItem(Property property, CCombo3 combo) throws Exception {
62 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception {
H A DLocalePropertyEditor.java13 import org.eclipse.wb.internal.core.model.property.Property;
40 protected String getText(Property property) throws Exception {
55 protected void openDialog(Property property) throws Exception {
H A DPropertyEditor.java20 import org.eclipse.wb.internal.core.model.property.Property;
25 * Abstract editor for {@link Property}.
44 * Paints given {@link Property} given rectangle <code>(x, y, width, height)</code> of {@link GC}.
46 public abstract void paint(Property property, GC gc, int x, int y, int width, int height)
55 * Activates editor for given {@link Property} at given place of {@link Composite}. Activation
57 * create here any {@link Control}'s required to edit {@link Property}.
69 public boolean activate(PropertyTable propertyTable, Property property, Point location)
81 * Deactivates editor for current {@link Property}. {@link PropertyEditor} should dispose any
82 * {@link Control}'s created before in {@link #activate(PropertyTable, Property, Point)}.
88 * is <code>true</code> if property should save value to {@link Property}
[all...]
H A DEnumerationValuesPropertyEditor.java16 import org.eclipse.wb.internal.core.model.property.Property;
59 public String getText(Property property) throws Exception {
62 if (value != Property.UNKNOWN_VALUE) {
80 if (value != Property.UNKNOWN_VALUE) {
107 protected void addItems(Property property, CCombo3 combo) throws Exception {
114 protected void selectItem(Property property, CCombo3 combo) throws Exception {
119 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception {
H A DCharacterPropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception {
57 protected String getEditorText(Property property) throws Exception {
62 protected boolean setEditorText(Property property, String text) throws Exception {
65 property.setValue(Property.UNKNOWN_VALUE);
H A DDoubleObjectPropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception {
60 protected String getEditorText(Property property) throws Exception {
65 protected boolean setEditorText(Property property, String text) throws Exception {
69 property.setValue(Property.UNKNOWN_VALUE);
H A DDoublePropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception {
58 protected String getEditorText(Property property) throws Exception {
63 protected boolean setEditorText(Property property, String text) throws Exception {
67 property.setValue(Property.UNKNOWN_VALUE);
H A DFloatPropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception {
57 protected String getEditorText(Property property) throws Exception {
62 protected boolean setEditorText(Property property, String text) throws Exception {
66 property.setValue(Property.UNKNOWN_VALUE);
H A DIntegerObjectPropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception {
60 protected String getEditorText(Property property) throws Exception {
65 protected boolean setEditorText(Property property, String text) throws Exception {
69 property.setValue(Property.UNKNOWN_VALUE);
H A DIntegerPropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception {
57 protected String getEditorText(Property property) throws Exception {
62 protected boolean setEditorText(Property property, String text) throws Exception {
66 property.setValue(Property.UNKNOWN_VALUE);
H A DLongObjectPropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception {
60 protected String getEditorText(Property property) throws Exception {
65 protected boolean setEditorText(Property property, String text) throws Exception {
69 property.setValue(Property.UNKNOWN_VALUE);
H A DLongPropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception {
57 protected String getEditorText(Property property) throws Exception {
62 protected boolean setEditorText(Property property, String text) throws Exception {
66 property.setValue(Property.UNKNOWN_VALUE);
H A DShortObjectPropertyEditor.java15 import org.eclipse.wb.internal.core.model.property.Property;
43 public String getText(Property property) throws Exception {
60 protected String getEditorText(Property property) throws Exception {
65 protected boolean setEditorText(Property property, String text) throws Exception {
69 property.setValue(Property.UNKNOWN_VALUE);
/external/clang/test/Analysis/
H A Dmalloc.cpp79 struct Property { struct
81 Property(char* n) function in struct:Property
85 void append(Property x);
88 append(Property(getterName));
96 Property prop;
97 NestedProperty(Property p)
103 appendNested(NestedProperty(Property(getterName)));
/external/emma/core/java12/com/vladium/emma/data/
H A DCoverageOptionsFactory.java15 import com.vladium.util.Property;
29 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS,
33 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS,
37 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION,
46 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS,
50 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS,
54 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION,
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DPropertyEditorPresentation.java13 import org.eclipse.wb.internal.core.model.property.Property;
26 * Shows presentation for given {@link Property}.
31 Property property,
40 public abstract void hide(PropertyTable propertyTable, Property property);

Completed in 376 milliseconds

123456