Greg Sheremeta has uploaded a new change for review. Change subject: userportal, webadmin: renamed CompositeCellWithElementId -> CompositeTooltipCell ......................................................................
userportal, webadmin: renamed CompositeCellWithElementId -> CompositeTooltipCell (Patch 4p of 12) No logic changes. Just a rename. Change-Id: Ifb8f348dc48b0e8a5101b715a1ba8c64fc2447a3 Signed-off-by: Greg Sheremeta <[email protected]> --- R frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/CompositeTooltipCell.java M frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/StatusCompositeCellWithElementId.java 2 files changed, 4 insertions(+), 3 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/28/38628/1 diff --git a/frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/CompositeCellWithElementId.java b/frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/CompositeTooltipCell.java similarity index 82% rename from frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/CompositeCellWithElementId.java rename to frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/CompositeTooltipCell.java index 9e56b24e..8dfcf11 100644 --- a/frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/CompositeCellWithElementId.java +++ b/frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/CompositeTooltipCell.java @@ -10,13 +10,14 @@ /** * A composite cell that sets an ID when it renders. + * TODO tt add tooltip support * * @param <C> * Cell data type. */ -public class CompositeCellWithElementId<C> extends CompositeCell<C> implements CellWithElementId<C> { +public class CompositeTooltipCell<C> extends CompositeCell<C> implements CellWithElementId<C> { - public CompositeCellWithElementId(List<HasCell<C, ?>> hasCells) { + public CompositeTooltipCell(List<HasCell<C, ?>> hasCells) { super(hasCells); } diff --git a/frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/StatusCompositeCellWithElementId.java b/frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/StatusCompositeCellWithElementId.java index 222f3d7..ea9e997 100644 --- a/frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/StatusCompositeCellWithElementId.java +++ b/frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/cell/StatusCompositeCellWithElementId.java @@ -16,7 +16,7 @@ import com.google.gwt.safehtml.shared.SafeHtml; import com.google.gwt.safehtml.shared.SafeHtmlBuilder; -public class StatusCompositeCellWithElementId<C> extends CompositeCellWithElementId<C> implements CellWithElementId<C> { +public class StatusCompositeCellWithElementId<C> extends CompositeTooltipCell<C> implements CellWithElementId<C> { public interface StatusCompositeCellResources extends ClientBundle { @ClientBundle.Source("org/ovirt/engine/ui/common/css/StatusCompositeCell.css") StatusCompositeCellCss statusCompositeCellCss(); -- To view, visit https://gerrit.ovirt.org/38628 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ifb8f348dc48b0e8a5101b715a1ba8c64fc2447a3 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Greg Sheremeta <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
