summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--client/src/com/vaadin/client/ComputedStyle.java4
-rw-r--r--client/src/com/vaadin/client/ui/VFilterSelect.java2
-rw-r--r--server/src/com/vaadin/ui/AbstractSelect.java2
-rw-r--r--server/src/com/vaadin/ui/ComboBox.java6
-rw-r--r--uitest/src/com/vaadin/tests/customelements/CustomProgressBarElement.java2
5 files changed, 8 insertions, 8 deletions
diff --git a/client/src/com/vaadin/client/ComputedStyle.java b/client/src/com/vaadin/client/ComputedStyle.java
index 676d18d245..b8795ac8ce 100644
--- a/client/src/com/vaadin/client/ComputedStyle.java
+++ b/client/src/com/vaadin/client/ComputedStyle.java
@@ -335,7 +335,7 @@ public class ComputedStyle {
/**
* Returns the sum of the top and bottom margin
*
- * @since
+ * @since 7.5.6
* @return the sum of the top and bottom margin
*/
public double getMarginHeight() {
@@ -348,7 +348,7 @@ public class ComputedStyle {
/**
* Returns the sum of the top and bottom margin
*
- * @since
+ * @since 7.5.6
* @return the sum of the left and right margin
*/
public double getMarginWidth() {
diff --git a/client/src/com/vaadin/client/ui/VFilterSelect.java b/client/src/com/vaadin/client/ui/VFilterSelect.java
index 288fdada8e..6ddce3d93c 100644
--- a/client/src/com/vaadin/client/ui/VFilterSelect.java
+++ b/client/src/com/vaadin/client/ui/VFilterSelect.java
@@ -177,7 +177,7 @@ public class VFilterSelect extends Composite implements Field, KeyDownHandler,
* by a server-side {@link com.vaadin.ui.ComboBox.ItemStyleGenerator}.
* The returned style is prefixed by <code>v-filterselect-item-</code>.
*
- * @since
+ * @since 7.5.6
* @return the style name to use, or <code>null</code> to not apply any
* custom style.
*/
diff --git a/server/src/com/vaadin/ui/AbstractSelect.java b/server/src/com/vaadin/ui/AbstractSelect.java
index 5152a38a85..fdf819f031 100644
--- a/server/src/com/vaadin/ui/AbstractSelect.java
+++ b/server/src/com/vaadin/ui/AbstractSelect.java
@@ -89,7 +89,7 @@ public abstract class AbstractSelect extends AbstractField<Object> implements
* Item caption mode: Item's ID's <code>String</code> representation is
* used as caption.
*
- * @since
+ * @since 7.5.6
*/
ID_TOSTRING,
/**
diff --git a/server/src/com/vaadin/ui/ComboBox.java b/server/src/com/vaadin/ui/ComboBox.java
index 077a27006e..1cf23468bb 100644
--- a/server/src/com/vaadin/ui/ComboBox.java
+++ b/server/src/com/vaadin/ui/ComboBox.java
@@ -55,7 +55,7 @@ public class ComboBox extends AbstractSelect implements
* shown in the popup. The CSS class name that will be added to the item
* style names is <tt>v-filterselect-item-[style name]</tt>.
*
- * @since
+ * @since 7.5.6
* @see ComboBox#setItemStyleGenerator(ItemStyleGenerator)
*/
public interface ItemStyleGenerator extends Serializable {
@@ -917,7 +917,7 @@ public class ComboBox extends AbstractSelect implements
* @param itemStyleGenerator
* the item style generator to set, or <code>null</code> to not
* use any custom item styles
- * @since
+ * @since 7.5.6
*/
public void setItemStyleGenerator(ItemStyleGenerator itemStyleGenerator) {
this.itemStyleGenerator = itemStyleGenerator;
@@ -929,7 +929,7 @@ public class ComboBox extends AbstractSelect implements
*
* @return the itemStyleGenerator the currently used item style generator,
* or <code>null</code> if no generator is used
- * @since
+ * @since 7.5.6
*/
public ItemStyleGenerator getItemStyleGenerator() {
return itemStyleGenerator;
diff --git a/uitest/src/com/vaadin/tests/customelements/CustomProgressBarElement.java b/uitest/src/com/vaadin/tests/customelements/CustomProgressBarElement.java
index 663f398bba..a669d32f2e 100644
--- a/uitest/src/com/vaadin/tests/customelements/CustomProgressBarElement.java
+++ b/uitest/src/com/vaadin/tests/customelements/CustomProgressBarElement.java
@@ -53,4 +53,4 @@ public class CustomProgressBarElement extends ProgressBarElement {
return null;
}
-} \ No newline at end of file
+}