Uses of Class
com.vaadin.shared.ui.BorderStyle
-
Packages that use BorderStyle Package Description com.vaadin.client.ui com.vaadin.server com.vaadin.shared.ui com.vaadin.shared.ui.link com.vaadin.ui -
-
Uses of BorderStyle in com.vaadin.client.ui
Fields in com.vaadin.client.ui declared as BorderStyle Modifier and Type Field Description protected static BorderStyle
VLink. BORDER_STYLE_DEFAULT
Deprecated.protected static BorderStyle
VLink. BORDER_STYLE_MINIMAL
Deprecated.protected static BorderStyle
VLink. BORDER_STYLE_NONE
Deprecated.BorderStyle
VLink. borderStyle
For internal use only. -
Uses of BorderStyle in com.vaadin.server
Fields in com.vaadin.server declared as BorderStyle Modifier and Type Field Description static BorderStyle
Page. BORDER_DEFAULT
Deprecated.As of 7.0, useDEFAULT
instead.static BorderStyle
Page. BORDER_MINIMAL
Deprecated.As of 7.0, useMINIMAL
instead.static BorderStyle
Page. BORDER_NONE
Deprecated.As of 7.0, useNONE
instead.Methods in com.vaadin.server with parameters of type BorderStyle Modifier and Type Method Description void
Page. open(Resource resource, String windowName, int width, int height, BorderStyle border)
Deprecated.As of 7.0, only retained to maintain compatibility with LegacyWindow.open methods.void
Page. open(String url, String windowName, int width, int height, BorderStyle border)
Opens the given URL in a window with the given size, border and name. -
Uses of BorderStyle in com.vaadin.shared.ui
Methods in com.vaadin.shared.ui that return BorderStyle Modifier and Type Method Description static BorderStyle
BorderStyle. valueOf(String name)
Returns the enum constant of this type with the specified name.static BorderStyle[]
BorderStyle. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of BorderStyle in com.vaadin.shared.ui.link
Fields in com.vaadin.shared.ui.link declared as BorderStyle Modifier and Type Field Description BorderStyle
LinkState. targetBorder
-
Uses of BorderStyle in com.vaadin.ui
Fields in com.vaadin.ui declared as BorderStyle Modifier and Type Field Description static BorderStyle
Link. TARGET_BORDER_DEFAULT
Deprecated.As of 7.0, useDEFAULT
insteadstatic BorderStyle
Link. TARGET_BORDER_MINIMAL
Deprecated.As of 7.0, useMINIMAL
insteadstatic BorderStyle
Link. TARGET_BORDER_NONE
Deprecated.As of 7.0, useNONE
insteadMethods in com.vaadin.ui that return BorderStyle Modifier and Type Method Description BorderStyle
Link. getTargetBorder()
Returns the target window border.Methods in com.vaadin.ui with parameters of type BorderStyle Modifier and Type Method Description void
LegacyWindow. open(Resource resource, String windowName, int width, int height, BorderStyle border)
Deprecated.As of 7.0, use getPage().open insteadvoid
Link. setTargetBorder(BorderStyle targetBorder)
Sets the border of the target window.Constructors in com.vaadin.ui with parameters of type BorderStyle Constructor Description Link(String caption, Resource resource, String targetName, int width, int height, BorderStyle border)
Creates a new instance of Link that opens a new window.
-