From: Henrik Paul Date: Mon, 16 Feb 2015 10:42:59 +0000 (+0200) Subject: Fixes javadocs. X-Git-Tag: 7.5.0.alpha1~97 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1ff0de1892f1868c717e8334c96e9e0cb5ea9fd6;p=vaadin-framework.git Fixes javadocs. Change-Id: I78b8d901f5714f0de1eb84c0aa923225ff472737 --- 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()}. * *

@@ -48,7 +48,7 @@ public abstract class ComplexRenderer implements Renderer { * * @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 implements Renderer { * * @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) {