]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixes javadocs.
authorHenrik Paul <henrik@vaadin.com>
Mon, 16 Feb 2015 10:42:59 +0000 (12:42 +0200)
committerVaadin Code Review <review@vaadin.com>
Mon, 16 Feb 2015 15:13:14 +0000 (15:13 +0000)
Change-Id: I78b8d901f5714f0de1eb84c0aa923225ff472737

client/src/com/vaadin/client/renderers/ComplexRenderer.java

index 75ea523cdc066beb346e4b501dcd2291146934bb..262de794688063a44613433f910965b768f31333 100644 (file)
@@ -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) {