Package org.nuiton.eugene.models.object
Interface ObjectModelDependency
-
- All Known Implementing Classes:
ObjectModelDependencyImpl
public interface ObjectModelDependencyAbstraction for the root node of object model trees. This an entry point for browsing a model tree. This object offers as well several facilities for a direct access to some of the object model elements. Created: april 23th 2009- Author:
- Florian Desbois - desbois@codelutin.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectModelClassifiergetClient()Client classifier of the dependencyStringgetName()Dependency nameObjectModelClassifiergetSupplier()Supplier classifier of the dependency
-
-
-
Method Detail
-
getName
String getName()
Dependency name- Returns:
- a String
-
getSupplier
ObjectModelClassifier getSupplier()
Supplier classifier of the dependency- Returns:
- an ObjectModelClassifier
-
getClient
ObjectModelClassifier getClient()
Client classifier of the dependency- Returns:
- an ObjectModelClassifier
-
-