/**
* 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() {
/**
* 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() {
* 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.
*/
* 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 {
* @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;
*
* @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;