HomeSort by relevance Sort by last modified time
    Searched refs:Property (Results 26 - 50 of 276) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
ComplexProperty.java 11 package org.eclipse.wb.internal.core.model.property;
13 import org.eclipse.wb.internal.core.model.property.editor.TextDisplayPropertyEditor;
14 import org.eclipse.wb.internal.core.model.property.editor.complex.IComplexPropertyEditor;
15 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
17 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipProvider;
18 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipTextProvider;
25 * Implementation of {@link Property} that shows given inner {@link Property}'s using
29 * @coverage core.model.property
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
EnumerationValuesPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
16 import org.eclipse.wb.internal.core.model.property.Property;
26 * @coverage core.model.property.editor
59 public String getText(Property property) throws Exception {
60 Object value = property.getValue();
62 if (value != Property.UNKNOWN_VALUE) {
80 if (value != Property.UNKNOWN_VALUE) {
96 // public String getClipboardSource(GenericProperty property) throws Exception
    [all...]
CharacterPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
57 protected String getEditorText(Property property) throws Exception {
58 return getText(property);
    [all...]
DoubleObjectPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception {
61 return getText(property);
    [all...]
DoublePropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
58 protected String getEditorText(Property property) throws Exception {
59 return getText(property);
    [all...]
FloatPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
57 protected String getEditorText(Property property) throws Exception {
58 return getText(property);
    [all...]
IntegerObjectPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception {
61 return getText(property);
    [all...]
IntegerPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
57 protected String getEditorText(Property property) throws Exception {
58 return getText(property);
    [all...]
LongObjectPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception {
61 return getText(property);
    [all...]
LongPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
57 protected String getEditorText(Property property) throws Exception {
58 return getText(property);
    [all...]
ShortObjectPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception {
61 return getText(property);
    [all...]
ShortPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
57 protected String getEditorText(Property property) throws Exception {
58 return getText(property);
    [all...]
AbstractListPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
14 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
35 public String getText(Property property) throws Exception {
37 Object value = property.getValue();
38 if (value != Property.UNKNOWN_VALUE) {
60 if (value != Property.UNKNOWN_VALUE) {
76 //public String getClipboardSource(GenericProperty property) throws Exception
    [all...]
StringArrayPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
18 import org.eclipse.wb.internal.core.model.property.Property;
25 * @coverage core.model.property.editor
44 protected String getText(Property property) throws Exception {
45 String[] items = getItems(property);
50 * @return the items specified in value of given {@link Property}.
52 private static String[] getItems(Property property) throws Exception
    [all...]
TextDialogPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
15 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
24 * @coverage core.model.property.editor
34 protected void onClick(PropertyTable propertyTable, Property property) throws Exception {
35 openDialog(property);
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
PropertiesTableModel.java 26 private List<ViewNode.Property> properties;
27 private List<ViewNode.Property> privateProperties = new ArrayList<ViewNode.Property>();
44 ViewNode.Property property = new ViewNode.Property(); local
45 property.name = "absolute_x";
46 property.value = String.valueOf(x);
47 privateProperties.add(property);
49 property = new ViewNode.Property()
63 ViewNode.Property property; local
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTooltipTextProvider.java 11 package org.eclipse.wb.internal.core.model.property.table;
16 import org.eclipse.wb.internal.core.model.property.Property;
22 * @coverage core.model.property.table
31 public Control createTooltipControl(Property property,
40 // was: header = property.getTitle();
41 header = property.getName();
43 content = getText(property);
66 protected abstract String getText(Property property) throws Exception
    [all...]
IPropertyExceptionHandler.java 11 package org.eclipse.wb.internal.core.model.property.table;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
18 * {@link Property} modifications using {@link PropertyEditor}'s.
21 * @coverage core.model.property.table
  /external/lldb/include/lldb/Interpreter/
Property.h 1 //===-- Property.h ----------------------------------------------*- C++ -*-===//
27 // Property class instances can be constructed using one of these.
39 class Property
42 Property (const PropertyDefinition &definition);
44 Property (const ConstString &name,
  /frameworks/base/core/java/android/util/
Property.java 20 * A property is an abstraction that can be used to represent a <emb>mutable</em> value that is held
21 * in a <em>host</em> object. The Property's {@link #set(Object, Object)} or {@link #get(Object)}
25 * @param <T> The class on which the property is declared.
26 * @param <V> The type that this property represents.
28 public abstract class Property<T, V> {
34 * This factory method creates and returns a Property given the <code>class</code> and
47 * <code>setName()</code> method is not found, the <code>Property</code> will be
49 * a property is allowed, but will have no effect.</p>
54 public static <T, V> Property<T, V> of(Class<T> hostType, Class<V> valueType, String name) {
59 * A constructor that takes an identifying name and {@link #getType() type} for the property
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentation.java 11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
15 import org.eclipse.wb.internal.core.model.property.Property;
16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
27 * @coverage core.model.property.editor
56 * Sets "selection" property of {@link Button}.
58 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) {
59 m_impl.setSelection(propertyTable, property, selected);
69 final Property property
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
StringPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor.string;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.AbstractTextPropertyEditor;
15 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
16 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
17 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
18 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
26 * @coverage core.model.property.editor
46 protected void onClick(PropertyTable propertyTable, Property property) throws Exception
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyComposite.java 22 import org.eclipse.wb.internal.core.model.property.Property;
27 * Property holding multiple instances of the same {@link XmlProperty} (but
33 * org.eclipse.wb.internal.core.model.property.GenericPropertyComposite
67 XmlPropertyComposite property = (XmlPropertyComposite) obj; local
68 return Arrays.equals(mProperties, property.mProperties);
76 for (Property property : mProperties) {
77 if (property.isModified()) {
88 for (Property property : mProperties)
113 Property property = properties[i]; local
    [all...]
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
RecurrenceSet.java 34 component.addProperty(new ICalendar.Property(CTS_PROPERTY_NAME));
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
Stream.h 72 * A Policy element may implement getter/setter function for a given property.
73 * Property may be routing_strategy, audio_stream_type_t, audio_usage_t, audio_source_t
76 template <typename Property>
77 Property get() const;
79 template <typename Property>
80 status_t set(Property property);

Completed in 399 milliseconds

12 3 4 5 6 7 8 91011>>