Subversion Repository Public Repository

litesoft

Diff Revisions 626 vs 948 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/client/foundation/widget/table/cell/panel/ActionPanelEntry.java

Diff revisions: vs.
  @@ -1,19 +1,18 @@
1 1 package com.temp.client.foundation.widget.table.cell.panel;
2 2
3 - import com.google.gwt.user.client.ui.Widget;
3 + import com.google.gwt.user.client.ui.*;
4 4
5 5 public abstract class ActionPanelEntry<T> {
6 6 /**
7 7 * Render the action item as a widget, depending on the type.
8 - *
8 + * <p/>
9 9 * If it's a separator it'll be rendered as an hr element, otherwise
10 10 * <hr/>
11 11 * , otherwise a clickable label widget is returned
12 12 *
13 13 * @param obj
14 + *
14 15 * @return
15 16 */
16 - abstract public Widget render(final T obj);
17 -
18 -
17 + abstract public Widget render( final T obj );
19 18 }