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
setContentModelToColumn
(C column, IContentModel contentModel) Lets the currentIColumnEditor
set the given contentModel 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.
-
setContentModelToColumn
Lets the currentIColumnEditor
set the given contentModel to the given column.- Parameter:
column
-contentModel
-- Löst aus:
RuntimeException
- if the currentIColumnEditor
cannot set the given contentModel 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.
-