Class AbstractTable
- java.lang.Object
-
- org.daisy.dotify.api.factory.AbstractFactory
-
- org.daisy.braille.utils.impl.tools.table.AbstractTable
-
- All Implemented Interfaces:
Serializable
,Factory
,FactoryProperties
,Table
- Direct Known Subclasses:
EmbosserTable
public abstract class AbstractTable extends AbstractFactory implements Table
Provides an abstract base for Table factories.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.daisy.dotify.api.factory.FactoryProperties
FactoryProperties.ComparatorBuilder
-
-
Constructor Summary
Constructors Constructor Description AbstractTable(String name)
Creates a new AbstractTable with the supplied settings.AbstractTable(String name, String desc)
Creates a new AbstractTable with the supplied settings.AbstractTable(String name, String desc, String identifier)
Creates a new AbstractTable with the supplied settings.
-
Method Summary
-
Methods inherited from class org.daisy.dotify.api.factory.AbstractFactory
getDescription, getDisplayName, getIdentifier, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.daisy.dotify.api.factory.Factory
getFeature, getProperty, setFeature
-
Methods inherited from interface org.daisy.dotify.api.factory.FactoryProperties
getDescription, getDisplayName, getIdentifier
-
Methods inherited from interface org.daisy.dotify.api.table.Table
newBrailleConverter
-
-
-
-
Constructor Detail
-
AbstractTable
public AbstractTable(String name, String desc, String identifier)
Creates a new AbstractTable with the supplied settings.- Parameters:
name
- the name of the Tabledesc
- the description of the Tableidentifier
- the Table identifier
-
AbstractTable
public AbstractTable(String name, String desc)
Creates a new AbstractTable with the supplied settings.- Parameters:
name
- the name of the Tabledesc
- the description of the Table
-
AbstractTable
public AbstractTable(String name)
Creates a new AbstractTable with the supplied settings.- Parameters:
name
- the name of the Table
-
-