Ignore:
Timestamp:
2002-11-26T13:55:24+13:00 (21 years ago)
Author:
kjdon
Message:

tidied up a bit, uses new page structure and new display elements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/action/Action.java

    r3363 r3568  
    88import org.w3c.dom.Document;
    99
     10/** base class for Actions */
    1011abstract public class Action {
    1112
     13    /** the interface setup variables */
    1214    protected ConfigVars config_=null;
    13  
    1415    /** container Document to create XML Nodes */
    1516    protected Document doc_=null;
    1617    /** a converter class to parse XML and create Docs */
    1718    protected XMLConverter converter_=null;
    18     /** cgi args conveter */
     19    /** cgi args converter */
    1920    protected CGIArgConverter cgi_=null;
    2021    /** a transformer class to transform xml using xslt */
     
    5556    Element message = converter_.getDOM(xml_in).getDocumentElement();
    5657   
    57     return process(message);
     58    Element result = process(message);
     59    return converter_.getString(result);
    5860    }
    5961   
    60     abstract public String process(Element xml_in);
     62    abstract public Element process(Element xml_in);
    6163   
    6264
Note: See TracChangeset for help on using the changeset viewer.