diff options
author | Henrik Paul <henrik@vaadin.com> | 2015-02-16 12:42:59 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-02-16 15:13:14 +0000 |
commit | 1ff0de1892f1868c717e8334c96e9e0cb5ea9fd6 (patch) | |
tree | 3efc84f3f1b321365f453c2727605cff299099e5 /client | |
parent | 65ba6be1d961b228e659690d80f5a2d3e6dd18ff (diff) | |
download | vaadin-framework-1ff0de1892f1868c717e8334c96e9e0cb5ea9fd6.tar.gz vaadin-framework-1ff0de1892f1868c717e8334c96e9e0cb5ea9fd6.zip |
Fixes javadocs.
Change-Id: I78b8d901f5714f0de1eb84c0aa923225ff472737
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/renderers/ComplexRenderer.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/com/vaadin/client/renderers/ComplexRenderer.java b/client/src/com/vaadin/client/renderers/ComplexRenderer.java index 75ea523cdc..262de79468 100644 --- a/client/src/com/vaadin/client/renderers/ComplexRenderer.java +++ b/client/src/com/vaadin/client/renderers/ComplexRenderer.java @@ -29,8 +29,8 @@ import com.vaadin.client.widget.grid.RendererCellReference; /** * Base class for renderers that needs initialization and destruction logic - * (override {@link #init(FlyweightCell) and #destroy(FlyweightCell) } and event - * handling (see {@link #onBrowserEvent(Cell, NativeEvent)}, + * (override {@link #init(FlyweightCell)} and {@link #destroy(FlyweightCell) } + * and event handling (see {@link #onBrowserEvent(Cell, NativeEvent)}, * {@link #getConsumedEvents()} and {@link #onActivate()}. * * <p> @@ -48,7 +48,7 @@ public abstract class ComplexRenderer<T> implements Renderer<T> { * * @param cell * The cell. Note that the cell is not to be stored outside of - * the method as the cell install will change. See + * the method as the cell instance will change. See * {@link FlyweightCell} */ public abstract void init(RendererCellReference cell); @@ -62,7 +62,7 @@ public abstract class ComplexRenderer<T> implements Renderer<T> { * * @param cell * The cell. Note that the cell is not to be stored outside of - * the method as the cell install will change. See + * the method as the cell instance will change. See * {@link FlyweightCell} */ public void destroy(RendererCellReference cell) { |