Schnittstelle IColumnEditor<C extends IColumn>
- Typparameter:
C
- is the type ofIColumn
s aIColumnEditor
can edit.
- Alle bekannten Implementierungsklassen:
ColumnEditor
public interface IColumnEditor<C extends IColumn>
- Version:
- 2024-12-27
- Autor:
- Silvan Wyss
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoid
deleteColumn
(C column) Lets the currentIColumnEditor
delete the given column.void
setContentModelsToColumn
(C column, IContainer<IContentModel> contentModels) Lets the currentIColumnEditor
set the given contentModels to the given column.void
setNameToColumn
(C column, String name) Lets the currentIColumnEditor
set the given name to the given column.
-
Methodendetails
-
deleteColumn
Lets the currentIColumnEditor
delete the given column.- Parameter:
column
-- Löst aus:
RuntimeException
- if the currentIColumnEditor
cannot delete the given column.
-
setContentModelsToColumn
Lets the currentIColumnEditor
set the given contentModels to the given column.- Parameter:
column
-contentModels
-- Löst aus:
RuntimeException
- if the currentIColumnEditor
cannot set one of the given contentModels to the given column
-
setNameToColumn
Lets the currentIColumnEditor
set the given name to the given column.- Parameter:
column
-name
-- Löst aus:
RuntimeException
- if the currentIColumnEditor
cannot set the given name to the given column.
-