Class SupplyDependencyContext
- java.lang.Object
-
- com._1c.g5.v8.dt.supply.datareference.SupplyDependencyContext
-
public class SupplyDependencyContext extends Object
Contains element dependency context: element node name, element dependencyEClass, and element dependency name. Examples of the dependencies are form items that may depend on attributes (via datapaths in form fields) and commands (via command names in buttons).
-
-
Constructor Summary
Constructors Constructor Description SupplyDependencyContext(String parentName)Creates new dependency context instanceSupplyDependencyContext(String parentName, org.eclipse.emf.ecore.EClass dependencyEClass, String dependencyName)Creates new dependency context instance
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.eclipse.emf.ecore.EClassgetDependencyEClass()Returns the dependencyEClassStringgetDependencyName()Returns the dependency element nameStringgetParentName()Returns the element name.
-
-
-
Constructor Detail
-
SupplyDependencyContext
public SupplyDependencyContext(String parentName, org.eclipse.emf.ecore.EClass dependencyEClass, String dependencyName)
Creates new dependency context instance- Parameters:
parentName- the element name, cannot benulldependencyEClass- the dependency elementEClass, can benulldependencyName- the dependency element name, can benull
-
SupplyDependencyContext
public SupplyDependencyContext(String parentName)
Creates new dependency context instance- Parameters:
parentName- the element name, cannot benull
-
-
Method Detail
-
getParentName
public String getParentName()
Returns the element name.- Returns:
- the parentName, never
null
-
getDependencyEClass
public org.eclipse.emf.ecore.EClass getDependencyEClass()
Returns the dependencyEClass- Returns:
- the dependency
EClass, can benull
-
getDependencyName
public String getDependencyName()
Returns the dependency element name- Returns:
- the dependency name, can be
null
-
-