Exemple #1
0
 private RowView(
     ColumnEditorWidget parent,
     List<String> rowSpans,
     DropColumnPanel oldDropColumnPanel,
     LayoutRow layoutRow) {
   initWidget(uiBinder.createAndBindUi(this));
   this.editorWidget = parent;
   this.oldDropColumnPanel = oldDropColumnPanel;
   this.row = new RowEditorWidget(parent, fluidContainer, rowSpans);
   reload(layoutRow.getLayoutColumns());
 }
Exemple #2
0
 public RowView(LayoutEditorWidget parent, LayoutRow layoutRow) {
   initWidget(uiBinder.createAndBindUi(this));
   this.editorWidget = parent;
   this.row = new RowEditorWidget(parent, fluidContainer, layoutRow.getRowSpam());
   reload(layoutRow.getLayoutColumns());
 }
Exemple #3
0
 protected RowView createRowView(
     ColumnEditorWidget parent, DropColumnPanel dropColumnPanel, LayoutRow editor) {
   return new RowView(parent, editor.getRowSpam(), dropColumnPanel, editor);
 }