Package org.daisy.dotify.api.factory
Interface FactoryProperties
-
- All Known Subinterfaces:
Embosser
,EmbosserFactoryProperties
,Factory
,FileFormat
,Paper
,Table
- All Known Implementing Classes:
AbstractFactory
,AbstractPaper
,RollPaper
,SheetPaper
,TractorPaper
,TranslatorMode
public interface FactoryProperties
Provides factory properties.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
FactoryProperties.ComparatorBuilder
Provides a comparator builder for factory properties.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
Gets the description for this FactoryString
getDisplayName()
Gets the display name for this FactoryString
getIdentifier()
Gets the identifier for this Factorystatic FactoryProperties.ComparatorBuilder
newComparatorBuilder()
Creates a new comparator builder for factory properties.
-
-
-
Method Detail
-
getIdentifier
String getIdentifier()
Gets the identifier for this Factory- Returns:
- returns the identifier for this Factory
-
getDisplayName
String getDisplayName()
Gets the display name for this Factory- Returns:
- returns the display name for this Factory
-
getDescription
String getDescription()
Gets the description for this Factory- Returns:
- returns the description for this Factory
-
newComparatorBuilder
static FactoryProperties.ComparatorBuilder newComparatorBuilder()
Creates a new comparator builder for factory properties.- Returns:
- a new comparator builder
-
-