/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/property/ |
H A D | MutablePropertyUtil.java | 26 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 D | ADRUintProperty.java | 26 package com.oracle.solaris.vp.util.misc.property;
|
H A D | BooleanProperty.java | 26 package com.oracle.solaris.vp.util.misc.property;
|
H A D | ByteProperty.java | 26 package com.oracle.solaris.vp.util.misc.property;
|
H A D | CharacterProperty.java | 26 package com.oracle.solaris.vp.util.misc.property;
|
H A D | DoubleProperty.java | 26 package com.oracle.solaris.vp.util.misc.property;
|
H A D | FloatProperty.java | 26 package com.oracle.solaris.vp.util.misc.property;
|
H A D | IntegerProperty.java | 26 package com.oracle.solaris.vp.util.misc.property;
|
H A D | LongProperty.java | 26 package com.oracle.solaris.vp.util.misc.property;
|
H A D | ShortProperty.java | 26 package com.oracle.solaris.vp.util.misc.property;
|
H A D | StringArrayProperty.java | 26 package com.oracle.solaris.vp.util.misc.property;
|
H A D | StringProperty.java | 26 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 D | DefaultBoundedRangeModelPropertySynchronizer.java | 26 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 D | EditableTablePanelPropertySynchronizer.java | 26 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 D | NVComboBoxPropertySynchronizer.java | 26 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 D | NVListSelectorPropertySynchronizer.java | 26 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 D | PasswordFieldPropertySynchronizer.java | 26 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 D | SpinnerNumberModelPropertySynchronizer.java | 26 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 D | TextComponentPropertySynchronizer.java | 26 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 D | TimeModelPropertySynchronizer.java | 26 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 D | CheckBoxPropertySynchronizer.java | 26 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 D | ComboBoxPropertySynchronizer.java | 26 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 D | ListModelPropertySynchronizer.java | 26 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 D | ListSelectorPropertySynchronizer.java | 26 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 D | RadioButtonPropertySynchronizer.java | 26 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...] |