Class ConfigurationProvider
- java.lang.Object
-
- com._1c.g5.v8.dt.metadata.mdclass.impl.ConfigurationProvider
-
public abstract class ConfigurationProvider extends Object
The SPI of a configuration provider.
-
-
Field Summary
Fields Modifier and Type Field Description static ConfigurationProvider
INSTANCE
-
Constructor Summary
Constructors Constructor Description ConfigurationProvider()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract Configuration
getConfiguration(org.eclipse.emf.ecore.EObject eObject)
Returns the configuration object for the given object, loaded in the same resource set as the given object.
-
-
-
Field Detail
-
INSTANCE
public static ConfigurationProvider INSTANCE
-
-
Method Detail
-
getConfiguration
public abstract Configuration getConfiguration(org.eclipse.emf.ecore.EObject eObject)
Returns the configuration object for the given object, loaded in the same resource set as the given object. Returnsnull
if the configuration object cannot be resolved for the given object.- Parameters:
eObject
- notnull
, must be contained by a resource in a resource set- Returns:
- the configuration object for the given object,
loaded in the same resource set as the given object;
null
if the configuration object cannot be resolved for the given object
-
-