◆ doAfterCompose()
void org.turro.newsletter.SectionComposer.doAfterCompose |
( |
Component |
comp | ) |
throws Exception |
Definition at line 96 of file SectionComposer.java.
97 super.doAfterCompose(comp);
98 grid = (SectionsGrid) Executions.getCurrent().getAttribute(
"grid");
99 column.setChecked(
entity.isNewColumn());
100 useAsTrigger.setChecked(
entity.isUseAsTrigger());
101 hideIfEmpty.setChecked(
entity.isHideIfEmpty());
102 colWidth.setReadonly(!column.isChecked());
◆ onColumn()
void org.turro.newsletter.SectionComposer.onColumn |
( |
| ) |
|
Definition at line 53 of file SectionComposer.java.
54 entity.setNewColumn(column.isChecked());
55 colWidth.setReadonly(!column.isChecked());
56 Events.postEvent(
new Event(Events.ON_CHANGE));
◆ onColWidth()
void org.turro.newsletter.SectionComposer.onColWidth |
( |
| ) |
|
Definition at line 60 of file SectionComposer.java.
61 entity.setWidth(colWidth.getValue());
62 Events.postEvent(
new Event(Events.ON_CHANGE));
◆ onDelete()
void org.turro.newsletter.SectionComposer.onDelete |
( |
| ) |
|
Definition at line 90 of file SectionComposer.java.
92 Events.postEvent(
new Event(Events.ON_CHANGE));
void deleteSection(NewsSection newsSection)
◆ onHideOfEmpty()
void org.turro.newsletter.SectionComposer.onHideOfEmpty |
( |
| ) |
|
Definition at line 72 of file SectionComposer.java.
73 entity.setHideIfEmpty(hideIfEmpty.isChecked());
74 Events.postEvent(
new Event(Events.ON_CHANGE));
◆ onMoveDown()
void org.turro.newsletter.SectionComposer.onMoveDown |
( |
| ) |
|
Definition at line 84 of file SectionComposer.java.
86 Events.postEvent(
new Event(Events.ON_CHANGE));
void moveDown(NewsSection newsSection)
◆ onMoveUp()
void org.turro.newsletter.SectionComposer.onMoveUp |
( |
| ) |
|
Definition at line 78 of file SectionComposer.java.
80 Events.postEvent(
new Event(Events.ON_CHANGE));
void moveUp(NewsSection newsSection)
◆ onUseAsTrigger()
void org.turro.newsletter.SectionComposer.onUseAsTrigger |
( |
| ) |
|
Definition at line 66 of file SectionComposer.java.
67 entity.setUseAsTrigger(useAsTrigger.isChecked());
68 Events.postEvent(
new Event(Events.ON_CHANGE));
The documentation for this class was generated from the following file: