Package com._1c.g5.v8.dt.dcs.ui
Interface EditorPage
-
- All Known Implementing Classes:
CalculatedFields
,DataSets
,EditorPageBase
,Links
,NestedSchemas
,Parameters
,Resources
,Settings
,Templates
public interface EditorPage
Страница редактора схемы компоновки данных.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addModelChangedListener(IDcsModelChangedListener listener)
Adds the specified DCS model changed listener.int
getAlias()
Получить текущий вариант встроенного языкаDataCompositionSchemaControlContext
getContext()
Gets actualDataCompositionSchemaControlContext
Class<? extends org.eclipse.ui.IEditorActionBarContributor>
getContributorClass()
Get editor page contributor's classorg.eclipse.ui.IEditorPart
getEmbeddedEditor()
Get embedded editor for the pageDataCompositionSchema
getSchema()
Получить схемуvoid
removeModelChangedNotifier(IDcsModelChangedListener listener)
Removes the specified DCS model changed listener.
-
-
-
Method Detail
-
getContext
DataCompositionSchemaControlContext getContext()
Gets actualDataCompositionSchemaControlContext
- Returns:
- actual
DataCompositionSchemaControlContext
, nevernull
-
getSchema
DataCompositionSchema getSchema()
Получить схему- Returns:
- схема
-
getAlias
int getAlias()
Получить текущий вариант встроенного языка- Returns:
- текущий вариант
-
addModelChangedListener
void addModelChangedListener(IDcsModelChangedListener listener)
Adds the specified DCS model changed listener.- Parameters:
listener
- the listener, cannot benull
.
-
removeModelChangedNotifier
void removeModelChangedNotifier(IDcsModelChangedListener listener)
Removes the specified DCS model changed listener.- Parameters:
listener
- the listener, cannot benull
.
-
getContributorClass
Class<? extends org.eclipse.ui.IEditorActionBarContributor> getContributorClass()
Get editor page contributor's class- Returns:
- contributor's
Class
instance for the exact page,null
in case of missing contributor.
-
getEmbeddedEditor
org.eclipse.ui.IEditorPart getEmbeddedEditor()
Get embedded editor for the page- Returns:
- embedded editor if exists,
null
otherwise
-
-