Class MenuTemplate

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String TEMPLATE_LOC  
    • Constructor Summary

      Constructors 
      Constructor Description
      MenuTemplate​(org.w3c.dom.Element el, java.lang.String pathFrom, java.lang.String fileDir)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getResult()  
      java.lang.Object getTemplate​(java.lang.String tag, org.w3c.dom.Element el)
      if this class has an template for this tag, it creates it using the passed in element and returns it.
      protected java.lang.Object textTemplate​(java.lang.String text)
      returns an object of the template type that this class uses, and returns the passed in text when the getResult method of that template type is called
      • Methods inherited from class java.lang.Object

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

      • getTemplate

        public java.lang.Object getTemplate​(java.lang.String tag,
                                            org.w3c.dom.Element el)
        Description copied from class: Template
        if this class has an template for this tag, it creates it using the passed in element and returns it. Otherwise it should return the superclass implementation of the getCommonTemplate method. Though no harm will come from merely returning null, they won't benefit from the wisdom and extra tags provided by their elder classes.
        Overrides:
        getTemplate in class Template
      • textTemplate

        protected java.lang.Object textTemplate​(java.lang.String text)
        returns an object of the template type that this class uses, and returns the passed in text when the getResult method of that template type is called
        Specified by:
        textTemplate in class Template