Browse Source

Update @since tags to 7.5.6.

Change-Id: I376cd27d5ae08c877cd3279740b601fb8dddb2e7
tags/7.6.0.alpha6
Mika Murtojarvi 8 years ago
parent
commit
17184829f3

+ 2
- 2
client/src/com/vaadin/client/ComputedStyle.java View File

@@ -335,7 +335,7 @@ public class ComputedStyle {
/**
* Returns the sum of the top and bottom margin
*
* @since 7.6
* @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 7.6
* @since 7.5.6
* @return the sum of the left and right margin
*/
public double getMarginWidth() {

+ 1
- 1
client/src/com/vaadin/client/LayoutManager.java View File

@@ -1810,7 +1810,7 @@ public class LayoutManager {
/**
* Checks if there is something waiting for a layout to take place.
*
* @since
* @since 7.5.6
* @return true if there are connectors waiting for measurement or layout,
* false otherwise
*/

+ 1
- 1
client/src/com/vaadin/client/ui/VFilterSelect.java View File

@@ -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.
*/

+ 1
- 1
server/src/com/vaadin/ui/AbstractSelect.java View File

@@ -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,
/**

+ 3
- 3
server/src/com/vaadin/ui/ComboBox.java View File

@@ -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;

+ 1
- 1
uitest/src/com/vaadin/tests/customelements/CustomProgressBarElement.java View File

@@ -36,7 +36,7 @@ public class CustomProgressBarElement extends ProgressBarElement {
}

/**
* @since
* @since 7.5.6
* @param indicator
* @param string
* @return

Loading…
Cancel
Save