Class AbstractEngine

    • Constructor Summary

      Constructors 
      Constructor Description
      AbstractEngine()  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract java.util.List<AbstractEngine> getChildren()
      Any engine may hold various child engines.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AbstractEngine

        public AbstractEngine()
    • Method Detail

      • getChildren

        public abstract java.util.List<AbstractEngine> getChildren()
        Any engine may hold various child engines. This is the way to retrieve them. If there are no child engines, return an empty list. Subclasses have to implement this in the proper way.
        Returns:
        list of child engines.