Package org.vaadin.miki.markers
Interface HasTitle
-
- All Known Subinterfaces:
WithTitleMixin<SELF>
- All Known Implementing Classes:
AbstractSuperFloatingPointField,AbstractSuperNumberField,IndexedButton,SuperBigDecimalField,SuperCheckbox,SuperDatePicker,SuperDoubleField,SuperIntegerField,SuperLongField,SuperTextArea,SuperTextField
public interface HasTitleMarker interface for components that have a title (or, a description tooltip shown on hovering).- Since:
- 2020-04-07
- Author:
- miki
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetTitle()Returns the current title (description) of this object.voidsetTitle(String title)Sets the new title (description) for this object.
-
-
-
Method Detail
-
setTitle
void setTitle(String title)
Sets the new title (description) for this object.- Parameters:
title- New title. Can benull, meaning no title.
-
getTitle
String getTitle()
Returns the current title (description) of this object.- Returns:
- Current title. Can be
null, meaning no title.
-
-