|
Eclipse Platform Release 3.6 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IValueProperty | |
---|---|
org.eclipse.core.databinding | Provides classes for binding observable objects, for example UI widgets and model objects. |
org.eclipse.core.databinding.beans | Provides classes for observing JavaBeans(tm) objects. |
org.eclipse.core.databinding.property | Interfaces and classes for representing and observing properties of objects. |
org.eclipse.core.databinding.property.list | |
org.eclipse.core.databinding.property.map | |
org.eclipse.core.databinding.property.set | |
org.eclipse.core.databinding.property.value | |
org.eclipse.jface.databinding.swt | Provides classes that can be used to observe changes in SWT widgets. |
org.eclipse.jface.databinding.util | |
org.eclipse.jface.databinding.viewers | Provides classes that can be used to observe the JFace Viewer framework. |
org.eclipse.ui.databinding | APIs for Workbench properties and observables for use with data binding Package Specification This package provides APIs that provide access to properties of Workbench objects for use with the data binding framework. |
Uses of IValueProperty in org.eclipse.core.databinding |
---|
Methods in org.eclipse.core.databinding that return IValueProperty | |
---|---|
static IValueProperty |
BindingProperties.model()
Returns an IValueProperty < IObservable > for
observing the model of a Binding . |
static IValueProperty |
BindingProperties.target()
Returns an IValueProperty < IObservable > for
observing the target of a Binding . |
static IValueProperty |
BindingProperties.validationStatus()
Returns an IValueProperty < IStatus > for observing
the validation status of a ValidationStatusProvider . |
Uses of IValueProperty in org.eclipse.core.databinding.beans |
---|
Subinterfaces of IValueProperty in org.eclipse.core.databinding.beans | |
---|---|
interface |
IBeanValueProperty
An IValueProperty extension interface with convenience methods for
creating nested bean properties. |
Uses of IValueProperty in org.eclipse.core.databinding.property |
---|
Methods in org.eclipse.core.databinding.property that return IValueProperty | |
---|---|
static IValueProperty |
Properties.observableValue(Object valueType)
Returns a value property which observes the value of an IObservableValue . |
static IValueProperty |
Properties.selfValue(Object valueType)
Returns a value property which takes the source object itself as the property value. |
Methods in org.eclipse.core.databinding.property with parameters of type IValueProperty | |
---|---|
static IObservableMap[] |
Properties.observeEach(IObservableMap domainMap,
IValueProperty[] properties)
Returns an array of observable maps where each maps observes the corresponding value property on all elements in the given domain map's values collection, for each property in the given
array. |
static IObservableMap[] |
Properties.observeEach(IObservableSet domainSet,
IValueProperty[] properties)
Returns an array of observable maps where each map observes the corresponding value property on all elements in the given domain set, for each property in the given array. |
Uses of IValueProperty in org.eclipse.core.databinding.property.list |
---|
Methods in org.eclipse.core.databinding.property.list with parameters of type IValueProperty | |
---|---|
IListProperty |
ListProperty.values(IValueProperty detailValue)
|
IListProperty |
IListProperty.values(IValueProperty detailValue)
Returns the nested combination of this property and the specified detail value property. |
Uses of IValueProperty in org.eclipse.core.databinding.property.map |
---|
Methods in org.eclipse.core.databinding.property.map with parameters of type IValueProperty | |
---|---|
IMapProperty |
IMapProperty.values(IValueProperty detailValues)
Returns the nested combination of this property and the specified detail value property. |
IMapProperty |
MapProperty.values(IValueProperty detailValues)
|
Uses of IValueProperty in org.eclipse.core.databinding.property.set |
---|
Methods in org.eclipse.core.databinding.property.set with parameters of type IValueProperty | |
---|---|
IMapProperty |
ISetProperty.values(IValueProperty detailValues)
Returns the nested combination of this property and the specified detail value property. |
IMapProperty |
SetProperty.values(IValueProperty detailValues)
|
Uses of IValueProperty in org.eclipse.core.databinding.property.value |
---|
Classes in org.eclipse.core.databinding.property.value that implement IValueProperty | |
---|---|
class |
DelegatingValueProperty
|
class |
SimpleValueProperty
Simplified abstract implementation of IValueProperty. |
class |
ValueProperty
Abstract implementation of IValueProperty |
Methods in org.eclipse.core.databinding.property.value that return IValueProperty | |
---|---|
protected abstract IValueProperty |
DelegatingValueProperty.doGetDelegate(Object source)
Returns the property to delegate to for the specified source object. |
IValueProperty |
DelegatingValueProperty.getDelegate(Object source)
Returns the property to delegate to for the specified source object. |
IValueProperty |
ValueProperty.value(IValueProperty detailValue)
|
IValueProperty |
IValueProperty.value(IValueProperty detailValue)
Returns the nested combination of this property and the specified detail value property. |
Methods in org.eclipse.core.databinding.property.value with parameters of type IValueProperty | |
---|---|
IValueProperty |
ValueProperty.value(IValueProperty detailValue)
|
IValueProperty |
IValueProperty.value(IValueProperty detailValue)
Returns the nested combination of this property and the specified detail value property. |
Uses of IValueProperty in org.eclipse.jface.databinding.swt |
---|
Subinterfaces of IValueProperty in org.eclipse.jface.databinding.swt | |
---|---|
interface |
IWidgetValueProperty
IValueProperty for observing an SWT Widget |
Classes in org.eclipse.jface.databinding.swt that implement IValueProperty | |
---|---|
class |
WidgetValueProperty
Abstract value property implementation for Widget properties. |
Uses of IValueProperty in org.eclipse.jface.databinding.util |
---|
Methods in org.eclipse.jface.databinding.util that return IValueProperty | |
---|---|
static IValueProperty |
JFaceProperties.value(Class clazz,
String fieldName,
String propertyName)
Returns a property for observing the property of the given model object whose getter and setter use the suffix fieldName in the same manner as a Java bean and which fires events to an IPropertyChangeListener
for the given propertyName when the value of the field changes. |
Uses of IValueProperty in org.eclipse.jface.databinding.viewers |
---|
Subinterfaces of IValueProperty in org.eclipse.jface.databinding.viewers | |
---|---|
interface |
IViewerValueProperty
IValueProperty for observing a JFace viewer |
Classes in org.eclipse.jface.databinding.viewers that implement IValueProperty | |
---|---|
class |
ViewerValueProperty
Abstract value property implementation for Viewer properties. |
Methods in org.eclipse.jface.databinding.viewers that return IValueProperty | |
---|---|
static IValueProperty |
CellEditorProperties.control()
Returns a value property for observing the control of a CellEditor . |
Methods in org.eclipse.jface.databinding.viewers with parameters of type IValueProperty | |
---|---|
static void |
ViewerSupport.bind(AbstractTreeViewer viewer,
Object input,
IListProperty childrenProperty,
IValueProperty labelProperty)
Binds the viewer to the specified input, using the specified children property to generate child nodes, and the specified label property to generate labels. |
static void |
ViewerSupport.bind(AbstractTreeViewer viewer,
Object input,
IListProperty childrenProperty,
IValueProperty[] labelProperties)
Binds the viewer to the specified input, using the specified children property to generate child nodes, and the specified label properties to generate labels. |
static void |
ViewerSupport.bind(AbstractTreeViewer viewer,
Object input,
ISetProperty childrenProperty,
IValueProperty labelProperty)
Binds the viewer to the specified input, using the specified children property to generate child nodes, and the specified label property to generate labels. |
static void |
ViewerSupport.bind(AbstractTreeViewer viewer,
Object input,
ISetProperty childrenProperty,
IValueProperty[] labelProperties)
Binds the viewer to the specified input, using the specified children property to generate child nodes, and the specified label properties to generate labels. |
static void |
ViewerSupport.bind(StructuredViewer viewer,
IObservableList input,
IValueProperty labelProperty)
Binds the viewer to the specified input, using the specified label property to generate labels. |
static void |
ViewerSupport.bind(StructuredViewer viewer,
IObservableList input,
IValueProperty[] labelProperties)
Binds the viewer to the specified input, using the specified label properties to generate labels. |
static void |
ViewerSupport.bind(StructuredViewer viewer,
IObservableSet input,
IValueProperty labelProperty)
Binds the viewer to the specified input, using the specified label property to generate labels. |
static void |
ViewerSupport.bind(StructuredViewer viewer,
IObservableSet input,
IValueProperty[] labelProperties)
Binds the viewer to the specified input, using the specified label properties to generate labels. |
static EditingSupport |
ObservableValueEditingSupport.create(ColumnViewer viewer,
DataBindingContext dbc,
CellEditor cellEditor,
IValueProperty cellEditorProperty,
IValueProperty elementProperty)
Returns an ObservableValueEditingSupport instance which binds the given cell editor property to the given element property. |
Uses of IValueProperty in org.eclipse.ui.databinding |
---|
Methods in org.eclipse.ui.databinding that return IValueProperty | |
---|---|
static IValueProperty |
WorkbenchProperties.adaptedValue(Class adapter)
Returns a value property which observes the source object as the adapted type, using the platform adapter manager. |
static IValueProperty |
WorkbenchProperties.singleSelection()
Returns a property for observing the first element of a structured selection as exposed by ISelectionService . |
static IValueProperty |
WorkbenchProperties.singleSelection(String partId,
boolean postSelection)
Returns a property for observing the first element of a structured selection as exposed by ISelectionService . |
|
Eclipse Platform Release 3.6 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Guidelines for using Eclipse APIs.
Copyright (c) Eclipse contributors and others 2000, 2010. All rights reserved.