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()); }
public RowView(LayoutEditorWidget parent, LayoutRow layoutRow) { initWidget(uiBinder.createAndBindUi(this)); this.editorWidget = parent; this.row = new RowEditorWidget(parent, fluidContainer, layoutRow.getRowSpam()); reload(layoutRow.getLayoutColumns()); }
protected RowView createRowView( ColumnEditorWidget parent, DropColumnPanel dropColumnPanel, LayoutRow editor) { return new RowView(parent, editor.getRowSpam(), dropColumnPanel, editor); }