Class CALSColSpanSpec
- java.lang.Object
-
- ro.sync.ecss.extensions.commons.table.support.CALSColSpanSpec
-
@API(type=INTERNAL, src=PUBLIC) public class CALSColSpanSpec extends java.lang.Object
Contains information about column span for the CALS table model (e.g. DocBook or DITA tables).
-
-
Constructor Summary
Constructors Constructor Description CALSColSpanSpec(java.lang.String spanName, java.lang.String namest, java.lang.String nameend)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getEndColumnName()
Return the name of the end column.java.lang.String
getSpanName()
java.lang.String
getStartColumnName()
Return the name of the start column.
-
-
-
Method Detail
-
getSpanName
public java.lang.String getSpanName()
- Returns:
- The name of the span specification. Can be
null
.
-
getStartColumnName
public java.lang.String getStartColumnName()
Return the name of the start column.- Returns:
- The name of the start column. It can be
null
if the value for the start column name given on the constructor wasnull
.
-
getEndColumnName
public java.lang.String getEndColumnName()
Return the name of the end column.- Returns:
- The name of the end column. It can be
null
if the value for the end column name given on the constructor wasnull
.
-
-