Package org.eclipse.pde.core
Interface IBaseModel
- 
- All Superinterfaces:
- IAdaptable
 - All Known Subinterfaces:
- IBuildModel,- IExtensionsModel,- IFragmentModel,- IModel,- IPluginModel,- IPluginModelBase,- ISharedExtensionsModel,- ISharedPluginModel
 
 public interface IBaseModel extends IAdaptable A base generic model. Classes that implement this interface are expected to be able to:- Dispose (clear all the data and reset)
- Tell if they are editable
- Tell if they contain valid data
 - Since:
- 2.0
- Restriction:
- This interface is not intended to be implemented by clients.
- Restriction:
- This interface is not intended to be extended by clients.
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddispose()Releases all the data in this model and clears the state.booleanisDisposed()Tests if this model has been disposed.booleanisEditable()Tests if this model can be modified.booleanisValid()Tests if this model valid.- 
Methods inherited from interface org.eclipse.core.runtime.IAdaptablegetAdapter
 
- 
 
- 
- 
- 
Method Detail- 
disposevoid dispose() Releases all the data in this model and clears the state. A disposed model can be returned to the normal state by reloading.
 - 
isDisposedboolean isDisposed() Tests if this model has been disposed. Disposed model cannot be used until it is loaded/reloaded.- Returns:
- trueif the model has been disposed
 
 - 
isEditableboolean isEditable() Tests if this model can be modified. Modification of a model that is not editable will result in CoreException being thrown.- Returns:
- trueif this model can be modified
 
 - 
isValidboolean isValid() Tests if this model valid. When models are loaded from the file, they may pass the syntax error checking and load all the model objects. However, some of the objects may contain invalid values that make the model unusable.- Returns:
- trueonly if the model can be safely used in all computations.
 
 
- 
 
-