Uses of Interface
org.eclipse.wst.common.frameworks.datamodel.IDataModel

Packages that use IDataModel
org.eclipse.wst.common.frameworks.datamodel This package includes API for Data Model Provider framework for builing executable and undoable operations using data models, their providers and provider interfaces that contain the properties used by the providers to set and retrieve these propertiese.  
 

Uses of IDataModel in org.eclipse.wst.common.frameworks.datamodel
 

Methods in org.eclipse.wst.common.frameworks.datamodel that return IDataModel
 IDataModel DataModelEvent.getDataModel()
           Returns the IDataModel whose property has changed.
 IDataModel AbstractDataModelProvider.getDataModel()
           An implemenation of getDataModel().
 IDataModel IDataModel.removeNestedModel(java.lang.String nestedModelName)
           Remove the specified nestedModel.
 IDataModel IDataModel.getNestedModel(java.lang.String nestedModelName)
           Returns the nested IDataModel identified the by the specified name.
static IDataModel DataModelFactory.createDataModel(java.lang.String dataModelProviderID)
           Looks up the appropriate IDataModelProvider by the specified id and constructs a new IDataModel.
static IDataModel DataModelFactory.createDataModel(java.lang.Class aClass)
           Builds an IDataModel using the specified Class.
static IDataModel DataModelFactory.createDataModel(IDataModelProvider provider)
           Creates a new IDataModel using the the specified instance of an IDataModelProvider.
 IDataModel IDataModelOperation.getDataModel()
           Returns this operation's IDataModel.
 IDataModel IDataModelProvider.getDataModel()
           Returns the backing IDataModel for this provider.
 IDataModel AbstractDataModelOperation.getDataModel()
           Default implementation of getDataModel()
 

Methods in org.eclipse.wst.common.frameworks.datamodel with parameters of type IDataModel
 void AbstractDataModelProvider.setDataModel(IDataModel dataModel)
           An implemenation of setDataModel().
 boolean IDataModel.addNestedModel(java.lang.String nestedModelName, IDataModel dataModel)
           This method is used to nest the specified IDataModel within this IDataModel.
 void IDataModelOperation.setDataModel(IDataModel model)
           Sets the IDataModel for this operation.
 void IDataModelProvider.setDataModel(IDataModel dataModel)
           
 void AbstractDataModelOperation.setDataModel(IDataModel model)
           Default implementation of setDataModel()
 

Constructors in org.eclipse.wst.common.frameworks.datamodel with parameters of type IDataModel
DataModelEvent(IDataModel dataModel, java.lang.String propertyName, int flag)
           Constructor for DataModelEvent.
AbstractDataModelOperation(IDataModel model)
           Constructor taking an IDataModel