aboutsummaryrefslogtreecommitdiffstats
path: root/compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java
diff options
context:
space:
mode:
authorAhmed Ashour <asashour@yahoo.com>2017-10-02 09:09:37 +0200
committerHenri Sara <henri.sara@gmail.com>2017-10-02 10:09:37 +0300
commit763a5cbe8c13ff4a169aae9062c643ad1588cea0 (patch)
treecf41f4ac4c31925f5ca69d66a3fa6a47fbecfd4f /compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java
parentadcf2e2e80c6a05ea5e43be15dc7a2576fd2bbb4 (diff)
downloadvaadin-framework-763a5cbe8c13ff4a169aae9062c643ad1588cea0.tar.gz
vaadin-framework-763a5cbe8c13ff4a169aae9062c643ad1588cea0.zip
First sentence of javadoc should end with a period (#10114)
Also includes minor other javadoc and formatting fixes.
Diffstat (limited to 'compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java')
-rw-r--r--compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java50
1 files changed, 25 insertions, 25 deletions
diff --git a/compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java b/compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java
index 9002f11c77..3c717ac954 100644
--- a/compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java
+++ b/compatibility-server/src/main/java/com/vaadin/v7/ui/Table.java
@@ -1016,7 +1016,7 @@ public class Table extends AbstractSelect implements Action.Container,
}
/**
- * Gets the pixel width of column
+ * Gets the pixel width of column.
*
* @param propertyId
* @return width of column or -1 when value not set
@@ -1271,7 +1271,7 @@ public class Table extends AbstractSelect implements Action.Container,
}
/**
- * Sets the column header for the specified column;
+ * Sets the column header for the specified column.
*
* @param propertyId
* the propertyId identifying the column.
@@ -1813,7 +1813,7 @@ public class Table extends AbstractSelect implements Action.Container,
}
/**
- * Returns the cause(s) for this exception
+ * Returns the cause(s) for this exception.
*
* @return the exception(s) which caused this exception
*/
@@ -4132,7 +4132,7 @@ public class Table extends AbstractSelect implements Action.Container,
/* Action container */
/**
- * Registers a new action handler for this container
+ * Registers a new action handler for this container.
*
* @see com.vaadin.event.Action.Container#addActionHandler(Action.Handler)
*/
@@ -4185,7 +4185,7 @@ public class Table extends AbstractSelect implements Action.Container,
}
/**
- * Removes all action handlers
+ * Removes all action handlers.
*/
public void removeAllActionHandlers() {
actionHandlers = null;
@@ -4245,7 +4245,7 @@ public class Table extends AbstractSelect implements Action.Container,
}
/**
- * Notifies the component that it is detached from the application
+ * Notifies the component that it is detached from the application.
*
* @see Component#detach()
*/
@@ -5334,7 +5334,7 @@ public class Table extends AbstractSelect implements Action.Container,
}
/**
- * Gets the property id of the column which header was pressed
+ * Gets the property id of the column which header was pressed.
*
* @return The column property id
*/
@@ -5369,7 +5369,7 @@ public class Table extends AbstractSelect implements Action.Container,
private final Object columnPropertyId;
/**
- * Constructor
+ * Constructor.
*
* @param source
* The source of the component
@@ -5385,7 +5385,7 @@ public class Table extends AbstractSelect implements Action.Container,
}
/**
- * Gets the property id of the column which header was pressed
+ * Gets the property id of the column which header was pressed.
*
* @return The column property id
*/
@@ -5402,7 +5402,7 @@ public class Table extends AbstractSelect implements Action.Container,
public interface HeaderClickListener extends Serializable {
/**
- * Called when a user clicks a header column cell
+ * Called when a user clicks a header column cell.
*
* @param event
* The event which contains information about the column and
@@ -5419,7 +5419,7 @@ public class Table extends AbstractSelect implements Action.Container,
public interface FooterClickListener extends Serializable {
/**
- * Called when a user clicks a footer column cell
+ * Called when a user clicks a footer column cell.
*
* @param event
* The event which contains information about the column and
@@ -5455,7 +5455,7 @@ public class Table extends AbstractSelect implements Action.Container,
}
/**
- * Removes a header click listener
+ * Removes a header click listener.
*
* @param listener
* The listener to remove.
@@ -5501,7 +5501,7 @@ public class Table extends AbstractSelect implements Action.Container,
}
/**
- * Removes a footer click listener
+ * Removes a footer click listener.
*
* @param listener
* The listener to remove.
@@ -5521,7 +5521,7 @@ public class Table extends AbstractSelect implements Action.Container,
}
/**
- * Gets the footer caption beneath the rows
+ * Gets the footer caption beneath the rows.
*
* @param propertyId
* The propertyId of the column *
@@ -5602,7 +5602,7 @@ public class Table extends AbstractSelect implements Action.Container,
private final Object columnPropertyId;
/**
- * Constructor
+ * Constructor.
*
* @param source
* The source of the event
@@ -5631,7 +5631,7 @@ public class Table extends AbstractSelect implements Action.Container,
}
/**
- * Get the width in pixels of the column before the resize event
+ * Get the width in pixels of the column before the resize event.
*
* @return Width in pixels
*/
@@ -5640,7 +5640,7 @@ public class Table extends AbstractSelect implements Action.Container,
}
/**
- * Get the width in pixels of the column after the resize event
+ * Get the width in pixels of the column after the resize event.
*
* @return Width in pixels
*/
@@ -5656,7 +5656,7 @@ public class Table extends AbstractSelect implements Action.Container,
public interface ColumnResizeListener extends Serializable {
/**
- * This method is triggered when the column has been resized
+ * This method is triggered when the column has been resized.
*
* @param event
* The event which contains the column property id, the
@@ -5727,7 +5727,7 @@ public class Table extends AbstractSelect implements Action.Container,
}
/**
- * Constructor
+ * Constructor.
*
* @param source
* The source of the event
@@ -5745,7 +5745,7 @@ public class Table extends AbstractSelect implements Action.Container,
public interface ColumnReorderListener extends Serializable {
/**
- * This method is triggered when the column has been reordered
+ * This method is triggered when the column has been reordered.
*
* @param event
*/
@@ -5766,7 +5766,7 @@ public class Table extends AbstractSelect implements Action.Container,
private Object propertyId;
/**
- * Constructor
+ * Constructor.
*
* @param source
* The source of the event
@@ -5779,7 +5779,7 @@ public class Table extends AbstractSelect implements Action.Container,
}
/**
- * Gets the id of the column whose collapse state changed
+ * Gets the id of the column whose collapse state changed.
*
* @return the property id of the column
*/
@@ -5798,7 +5798,7 @@ public class Table extends AbstractSelect implements Action.Container,
/**
* This method is triggered when the collapse state for a column has
- * changed
+ * changed.
*
* @param event
*/
@@ -5875,7 +5875,7 @@ public class Table extends AbstractSelect implements Action.Container,
/**
* Set the item description generator which generates tooltips for cells and
- * rows in the Table
+ * rows in the Table.
*
* @param generator
* The generator to use or null to disable
@@ -5960,7 +5960,7 @@ public class Table extends AbstractSelect implements Action.Container,
/**
* Pass one String if spanColumns is used, one String for each visible
- * column otherwise
+ * column otherwise.
*/
public void setText(String... text) {
if (text == null || (text.length == 1 && text[0] == null)) {