Class Model


  • public class Model
    extends Traceable
    A model is the central object. It consists of features.
    • Constructor Detail

      • Model

        public Model()
    • Method Detail

      • getFeature

        public Feature getFeature​(java.lang.String name)
        Find the feature if available
        Parameters:
        name - The feature name
        Returns:
        The feature or null.
      • getOrCreateFeature

        public Feature getOrCreateFeature​(java.lang.String name)
        Get or create the feature.
        Parameters:
        name - Feature name
        Returns:
        The feature for the given name.
      • getFeatures

        public java.util.List<Feature> getFeatures()
        Return all features. The returned list is modifiable and directly modifies the model.
        Returns:
        The list of features.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class Traceable