Interface SegmentLayoutTagDeclaration
-
- All Superinterfaces:
HasBinding
,HasId
,HasIdBindingAndRendered
,IsRendered
,IsVisual
public interface SegmentLayoutTagDeclaration extends HasIdBindingAndRendered, IsVisual
Renders a layout using a 12 columns grid. Find more information on how the grid works in the Twitter Bootstrap documentation. If no attribute is defined, extraSmall="12seg" will be used as default.- Since:
- 3.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setExtraLarge(String extraLarge)
The space-separated definition of the columns for extra large devices.void
setExtraSmall(String extraSmall)
The space-separated definition of the columns for extra small devices.void
setLarge(String large)
The space-separated definition of the columns for large devices.void
setMarginExtraLarge(String marginExtraLarge)
The space-separated definition of the column margins for extra large devices.void
setMarginExtraSmall(String marginExtraSmall)
The space-separated definition of the column margins for extra small devices.void
setMarginLarge(String marginLarge)
The space-separated definition of the column margins for large devices.void
setMarginMedium(String marginMedium)
The space-separated definition of the column margins for medium devices.void
setMarginSmall(String marginSmall)
The space-separated definition of the column margins for small devices.void
setMedium(String medium)
The space-separated definition of the columns for medium devices.void
setSmall(String small)
The space-separated definition of the columns for small devices.-
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasBinding
setBinding
-
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsRendered
setRendered
-
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsVisual
setCustomClass, setMarkup
-
-
-
-
Method Detail
-
setExtraSmall
void setExtraSmall(String extraSmall)
The space-separated definition of the columns for extra small devices. Possible values are: segment values between 1 and 12, 'auto' and '*'. Example: '1seg 5seg * auto'
-
setSmall
void setSmall(String small)
The space-separated definition of the columns for small devices. Possible values are: segment values between 1 and 12, 'auto' and '*'. Example: '1seg 5seg * auto'
-
setMedium
void setMedium(String medium)
The space-separated definition of the columns for medium devices. Possible values are: segment values between 1 and 12, 'auto' and '*'. Example: '1seg 5seg * auto'
-
setLarge
void setLarge(String large)
The space-separated definition of the columns for large devices. Possible values are: segment values between 1 and 12, 'auto' and '*'. Example: '1seg 5seg * auto'
-
setExtraLarge
void setExtraLarge(String extraLarge)
The space-separated definition of the columns for extra large devices. Possible values are: segment values between 1 and 12, 'auto' and '*'. Example: '1seg 5seg * auto'
-
setMarginExtraSmall
void setMarginExtraSmall(String marginExtraSmall)
The space-separated definition of the column margins for extra small devices. Allowed values are: none, left, right, both Example: 'left none both'
-
setMarginSmall
void setMarginSmall(String marginSmall)
The space-separated definition of the column margins for small devices. Allowed values are: none, left, right, both Example: 'left none both'
-
setMarginMedium
void setMarginMedium(String marginMedium)
The space-separated definition of the column margins for medium devices. Allowed values are: none, left, right, both Example: 'left none both'
-
setMarginLarge
void setMarginLarge(String marginLarge)
The space-separated definition of the column margins for large devices. Allowed values are: none, left, right, both Example: 'left none both'
-
setMarginExtraLarge
void setMarginExtraLarge(String marginExtraLarge)
The space-separated definition of the column margins for extra large devices. Allowed values are: none, left, right, both Example: 'left none both'
-
-