Searched defs:property (Results 1 - 25 of 56) sorted by relevance

123

/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/property/
H A DMutablePropertyUtil.java26 package com.oracle.solaris.vp.util.misc.property;
31 public static <T> String getSavedValueAsString(MutableProperty<T> property) argument
33 T value = property.getSavedValue();
34 return property.getConverter().revert(value);
37 public static <T> String getValueAsString(MutableProperty<T> property) { argument
38 T value = property.getValue();
39 return property.getConverter().revert(value);
42 public static <T> void setSavedValueAsString(MutableProperty<T> property, argument
45 T value = property.getConverter().convert(sValue);
46 property
49 setValueAsString(MutableProperty<T> property, String sValue) argument
[all...]
H A DADRUintProperty.java26 package com.oracle.solaris.vp.util.misc.property;
H A DBooleanProperty.java26 package com.oracle.solaris.vp.util.misc.property;
H A DByteProperty.java26 package com.oracle.solaris.vp.util.misc.property;
H A DCharacterProperty.java26 package com.oracle.solaris.vp.util.misc.property;
H A DDoubleProperty.java26 package com.oracle.solaris.vp.util.misc.property;
H A DFloatProperty.java26 package com.oracle.solaris.vp.util.misc.property;
H A DIntegerProperty.java26 package com.oracle.solaris.vp.util.misc.property;
H A DLongProperty.java26 package com.oracle.solaris.vp.util.misc.property;
H A DShortProperty.java26 package com.oracle.solaris.vp.util.misc.property;
H A DStringArrayProperty.java26 package com.oracle.solaris.vp.util.misc.property;
H A DStringProperty.java26 package com.oracle.solaris.vp.util.misc.property;
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/property/
H A DDefaultBoundedRangeModelPropertySynchronizer.java26 package com.oracle.solaris.vp.util.swing.property;
30 import com.oracle.solaris.vp.util.misc.property.*;
57 MutableProperty<Integer> property, DefaultBoundedRangeModel model,
60 super(property, model, initFromProp);
66 * initial synchronization from the property to the
70 MutableProperty<Integer> property, DefaultBoundedRangeModel model) {
72 this(property, model, true);
56 DefaultBoundedRangeModelPropertySynchronizer( MutableProperty<Integer> property, DefaultBoundedRangeModel model, boolean initFromProp) argument
69 DefaultBoundedRangeModelPropertySynchronizer( MutableProperty<Integer> property, DefaultBoundedRangeModel model) argument
H A DEditableTablePanelPropertySynchronizer.java26 package com.oracle.solaris.vp.util.swing.property;
30 import com.oracle.solaris.vp.util.misc.property.*;
58 MutableProperty<List<T>> property, EditableTablePanel panel,
61 super(property, panel, initFromProp);
67 * synchronization from the property to the {@link EditableTablePanel}.
70 MutableProperty<List<T>> property, EditableTablePanel panel) {
72 this(property, panel, true);
57 EditableTablePanelPropertySynchronizer( MutableProperty<List<T>> property, EditableTablePanel panel, boolean initFromProp) argument
69 EditableTablePanelPropertySynchronizer( MutableProperty<List<T>> property, EditableTablePanel panel) argument
H A DNVComboBoxPropertySynchronizer.java26 package com.oracle.solaris.vp.util.swing.property;
30 import com.oracle.solaris.vp.util.misc.property.MutableProperty;
44 public NVComboBoxPropertySynchronizer(MutableProperty<T> property, argument
47 super(property, combo, initFromProp);
52 * synchronization from the property to the {@code JComboBox}.
54 public NVComboBoxPropertySynchronizer(MutableProperty<T> property, argument
57 this(property, combo, true);
H A DNVListSelectorPropertySynchronizer.java26 package com.oracle.solaris.vp.util.swing.property;
30 import com.oracle.solaris.vp.util.misc.property.MutableProperty;
45 public NVListSelectorPropertySynchronizer(MutableProperty<Set<T>> property, argument
48 super(property, selector, initFromProp, leftListIsDest);
53 * synchronization from the property to the {@code ListSelector}.
55 public NVListSelectorPropertySynchronizer(MutableProperty<Set<T>> property, argument
58 this(property, selector, true, leftListIsDest);
H A DPasswordFieldPropertySynchronizer.java26 package com.oracle.solaris.vp.util.swing.property;
30 import com.oracle.solaris.vp.util.misc.property.*;
57 public PasswordFieldPropertySynchronizer(MutableProperty<String> property, argument
60 super(property, field, initFromProp);
66 * synchronization from the property to the {@code JPasswordField}.
68 public PasswordFieldPropertySynchronizer(MutableProperty<String> property, argument
71 this(property, field, true);
H A DSpinnerNumberModelPropertySynchronizer.java26 package com.oracle.solaris.vp.util.swing.property;
30 import com.oracle.solaris.vp.util.misc.property.*;
57 MutableProperty<Integer> property, SpinnerNumberModel model,
60 super(property, model, initFromProp);
66 * synchronization from the property to the {@code SpinnerNumberModel}.
69 MutableProperty<Integer> property, SpinnerNumberModel model) {
71 this(property, model, true);
56 SpinnerNumberModelPropertySynchronizer( MutableProperty<Integer> property, SpinnerNumberModel model, boolean initFromProp) argument
68 SpinnerNumberModelPropertySynchronizer( MutableProperty<Integer> property, SpinnerNumberModel model) argument
H A DTextComponentPropertySynchronizer.java26 package com.oracle.solaris.vp.util.swing.property;
31 import com.oracle.solaris.vp.util.misc.property.*;
58 public TextComponentPropertySynchronizer(MutableProperty<T> property, argument
61 super(property, comp, initFromProp);
67 * synchronization from the property to the {@code JTextComponent}.
69 public TextComponentPropertySynchronizer(MutableProperty<T> property, argument
72 this(property, comp, true);
H A DTimeModelPropertySynchronizer.java26 package com.oracle.solaris.vp.util.swing.property;
29 import com.oracle.solaris.vp.util.misc.property.*;
56 public TimeModelPropertySynchronizer(MutableProperty<Long> property, argument
59 super(property, model, initFromProp);
66 * synchronization from the property to the {@code TimeModel}.
68 public TimeModelPropertySynchronizer(MutableProperty<Long> property, argument
71 this(property, model, true);
H A DCheckBoxPropertySynchronizer.java26 package com.oracle.solaris.vp.util.swing.property;
30 import com.oracle.solaris.vp.util.misc.property.*;
58 public CheckBoxPropertySynchronizer(MutableProperty<Boolean> property, argument
61 super(property, checkBox, initFromProp);
72 * synchronization from the property to the {@code JCheckBox}.
74 public CheckBoxPropertySynchronizer(MutableProperty<Boolean> property, argument
77 this(property, checkBox, true, false);
H A DComboBoxPropertySynchronizer.java26 package com.oracle.solaris.vp.util.swing.property;
31 import com.oracle.solaris.vp.util.misc.property.*;
57 public ComboBoxPropertySynchronizer(MutableProperty<T> property, argument
60 super(property, combo, initFromProp);
66 * synchronization from the property to the {@code JComboBox}.
68 public ComboBoxPropertySynchronizer(MutableProperty<T> property, argument
71 this(property, combo, true);
H A DListModelPropertySynchronizer.java26 package com.oracle.solaris.vp.util.swing.property;
31 import com.oracle.solaris.vp.util.misc.property.*;
69 public ListModelPropertySynchronizer(MutableProperty<List<T>> property, argument
72 super(property, model, initFromProp);
78 * synchronization from the property to the {@code DefaultListModel}.
80 public ListModelPropertySynchronizer(MutableProperty<List<T>> property, argument
83 this(property, model, true);
H A DListSelectorPropertySynchronizer.java26 package com.oracle.solaris.vp.util.swing.property;
31 import com.oracle.solaris.vp.util.misc.property.*;
73 * @param property
79 * property}
83 * the property to the object; if {@code false},
90 public ListSelectorPropertySynchronizer(MutableProperty<Set<T>> property, argument
93 super(property, selector, initFromProp);
105 * synchronization from the property to the {@link ListSelector}.
107 public ListSelectorPropertySynchronizer(MutableProperty<Set<T>> property, argument
110 this(property, selecto
[all...]
H A DRadioButtonPropertySynchronizer.java26 package com.oracle.solaris.vp.util.swing.property;
32 import com.oracle.solaris.vp.util.misc.property.*;
64 * @param property
65 * the property to synchronize with the button group
72 * the property to the buttons; if {@code false},
75 public RadioButtonPropertySynchronizer(MutableProperty<T> property, argument
78 super(property, map, initFromProp);
91 * synchronization from the property to the button map.
93 public RadioButtonPropertySynchronizer(MutableProperty<T> property, argument
96 this(property, ma
[all...]

Completed in 32 milliseconds

123