Greg Sheremeta has uploaded a new change for review. Change subject: userportal, webadmin: deleted unused AbstractCellWithElementId ......................................................................
userportal, webadmin: deleted unused AbstractCellWithElementId (Patch 4m of 12) No logic changes. Just a delete. Change-Id: Id940484b3e14f4aa8a44655a3e4a9dc655c5e1b2 Signed-off-by: Greg Sheremeta <gsher...@redhat.com> --- D frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/AbstractCellWithElementId.java 1 file changed, 0 insertions(+), 39 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/19/38619/1 diff --git a/frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/AbstractCellWithElementId.java b/frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/AbstractCellWithElementId.java deleted file mode 100644 index edcc4df..0000000 --- a/frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/AbstractCellWithElementId.java +++ /dev/null @@ -1,39 +0,0 @@ -package org.ovirt.engine.ui.common.widget.table.cell; - -import org.ovirt.engine.ui.common.idhandler.CellWithElementId; - -import com.google.gwt.cell.client.AbstractCell; -import com.google.gwt.user.client.DOM; - -/** - * A cell that sets an ID when it renders. Convenience implementation of CellWithElementId. - * - * @param <C> - * Cell data type. - */ -public abstract class AbstractCellWithElementId<C> extends AbstractCell<C> implements CellWithElementId<C> { - - public AbstractCellWithElementId(String... consumedEvents) { - super(consumedEvents); - } - - private String elementIdPrefix = DOM.createUniqueId(); // default - private String columnId; - - public void setElementIdPrefix(String elementIdPrefix) { - this.elementIdPrefix = elementIdPrefix; - } - - public void setColumnId(String columnId) { - this.columnId = columnId; - } - - public String getElementIdPrefix() { - return elementIdPrefix; - } - - public String getColumnId() { - return columnId; - } - -} -- To view, visit https://gerrit.ovirt.org/38619 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Id940484b3e14f4aa8a44655a3e4a9dc655c5e1b2 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Greg Sheremeta <gsher...@redhat.com> _______________________________________________ Engine-patches mailing list Engine-patches@ovirt.org http://lists.ovirt.org/mailman/listinfo/engine-patches