Interface Cell
-
- All Known Implementing Classes:
OriginCell
,SpanCell
@Deprecated public interface Cell
Deprecated.since 4.0.0To support horizontal and vertical spans, at each position will be a cell as a representative. Either a "origin cell" for the first position or a "span cell" for spanned other positions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description int
getColumnSpan()
Deprecated.jakarta.faces.component.UIComponent
getComponent()
Deprecated.OriginCell
getOrigin()
Deprecated.int
getRowSpan()
Deprecated.boolean
isHorizontalFirst()
Deprecated.Is the origin cell or span cell at the first position of the cell compound.boolean
isVerticalFirst()
Deprecated.Is the origin cell or span cell at the first position of the cell compound.
-
-
-
Method Detail
-
getComponent
jakarta.faces.component.UIComponent getComponent()
Deprecated.
-
getOrigin
OriginCell getOrigin()
Deprecated.
-
isHorizontalFirst
boolean isHorizontalFirst()
Deprecated.Is the origin cell or span cell at the first position of the cell compound.- Returns:
- If its at the first position.
-
isVerticalFirst
boolean isVerticalFirst()
Deprecated.Is the origin cell or span cell at the first position of the cell compound.- Returns:
- If its at the first position.
-
getColumnSpan
int getColumnSpan()
Deprecated.
-
getRowSpan
int getRowSpan()
Deprecated.
-
-