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

12 3 4 5 6 7 8 91011>>

  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapBmessageParser.java 32 import android.bluetooth.client.map.utils.BmsgTokenizer.Property;
46 private final static Property BEGIN_BMSG = new Property("BEGIN", "BMSG");
47 private final static Property END_BMSG = new Property("END", "BMSG");
49 private final static Property BEGIN_VCARD = new Property("BEGIN", "VCARD");
50 private final static Property END_VCARD = new Property("END", "VCARD");
52 private final static Property BEGIN_BENV = new Property("BEGIN", "BENV")
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
BmsgTokenizer.java 35 static public class Property {
39 public Property(String name, String value) {
57 return ((o instanceof Property) && ((Property) o).name.equals(name) && ((Property) o).value
73 public Property next(boolean alwaysReturn) throws ParseException {
84 throw new ParseException("Property or empty line expected", pos());
94 return new Property(mMatcher.group(2), mMatcher.group(3));
97 public Property next() throws ParseException {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/utils/
BmsgTokenizer.java 35 static public class Property {
39 public Property(String name, String value) {
57 return ((o instanceof Property) && ((Property) o).name.equals(name) && ((Property) o).value
73 public Property next(boolean alwaysReturn) throws ParseException {
84 throw new ParseException("Property or empty line expected", pos());
94 return new Property(mMatcher.group(2), mMatcher.group(3));
97 public Property next() throws ParseException {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
EnumXmlPropertyEditor.java 23 import org.eclipse.wb.internal.core.model.property.Property;
24 import org.eclipse.wb.internal.core.model.property.editor.AbstractComboPropertyEditor;
25 import org.eclipse.wb.internal.core.model.property.editor.ITextValuePropertyEditor;
35 protected String getText(Property property) throws Exception {
36 Object value = property.getValue();
41 } else if (value == Property.UNKNOWN_VALUE) {
48 private String[] getItems(Property property) {
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
PropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
20 import org.eclipse.wb.internal.core.model.property.Property;
21 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
22 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
25 * Abstract editor for {@link Property}.
28 * @coverage core.model.property.editor
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
    [all...]
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...]
  /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...]
  /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/testng/src/main/java/org/testng/
ReporterConfig.java 29 private List<Property> m_properties = Lists.newArrayList();
36 public void addProperty(Property property) {
37 m_properties.add(property);
40 public List<Property> getProperties() {
59 ReporterConfig.Property property = m_properties.get(i); local
60 sb.append(property.getName());
62 sb.append(property.getValue());
86 Property property = new Property() local
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
PropertyUtils.java 35 private final Map<Class<?>, Map<String, Property>> propertiesCache = new HashMap<Class<?>, Map<String, Property>>();
36 private final Map<Class<?>, Set<Property>> readableProperties = new HashMap<Class<?>, Set<Property>>();
41 protected Map<String, Property> getPropertiesMap(Class<?> type, BeanAccess bAccess)
47 Map<String, Property> properties = new LinkedHashMap<String, Property>();
63 for (PropertyDescriptor property : Introspector.getBeanInfo(type)
65 Method readMethod = property.getReadMethod();
67 properties.put(property.getName(), new MethodProperty(property))
127 Property property = properties.get(name); 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...]
  /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...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/
FilterPropertyToDumpTest.java 26 import org.yaml.snakeyaml.introspector.Property;
91 protected Set<Property> getProperties(Class<? extends Object> type)
93 Set<Property> set = super.getProperties(type);
94 Set<Property> filtered = new TreeSet<Property>();
97 for (Property prop : set) {

Completed in 909 milliseconds

12 3 4 5 6 7 8 91011>>