Class Configuration


  • public class Configuration
    extends Object
    The configuration class keeps the complete configuration needed for the generation process. It is supplied with UnitDescriptors describing the available units of generation, and can then read the configuration. After the configuration is read, no new units of generation can be added.
    • Constructor Detail

      • Configuration

        public Configuration()
    • Method Detail

      • addUnit

        public void addUnit​(UnitDescriptor unitDescriptor)
        Adds a unit of generation to the configuration.
        Parameters:
        unitDescriptor - Describes the unit of generation to add, not null.
        Throws:
        NullPointerException - if unitDescriptor is null.
        IllegalStateException - if the configuration has already been read.
      • addUnits

        public void addUnits​(List<UnitDescriptor> unitDescriptors)
        Adds several units of generation to the configuration.
        Parameters:
        unitDescriptors - Describes the units of generation to add, not null.
        Throws:
        NullPointerException - if unitDescriptors is null or the list contains a null entry.
        IllegalStateException - if the configuration has already been read.
      • getUnitConfigurations

        public List<UnitConfiguration> getUnitConfigurations()
        Returns the list of UnitConfigurations.
        Returns:
        the list of unit configurations, never null.
        Throws:
        IllegalStateException - if the configuration was not yet read.
      • getConfigurationHandlers

        public ConfigurationHandlers getConfigurationHandlers()
        Returns the available configuration handlers.
        Returns:
        the available configuration handlers, not null.
      • setConfigurationHandlers

        public void setConfigurationHandlers​(ConfigurationHandlers configurationHandlers)
        Sets the available configuration handlers.
        Parameters:
        configurationHandlers - the available configuration handlers, not null.