Ignore:
Timestamp:
2013-06-13T13:13:46+12:00 (11 years ago)
Author:
sjm84
Message:

Various improvements and fixes mostly to do with adding depositor functionality

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/util/XMLTransformer.java

    r27090 r27617  
    217217    }
    218218
    219     public Node transform(Document stylesheet, Document source, HashMap<String, Comparable> parameters)
     219    public Node transform(Document stylesheet, Document source, HashMap<String, Object> parameters)
    220220    {
    221221        return transform(stylesheet, source, parameters, null, null);
    222222    }
    223223
    224     public Node transform(Document stylesheet, Document source, HashMap<String, Comparable> parameters, Document docDocType)
     224    public Node transform(Document stylesheet, Document source, HashMap<String, Object> parameters, Document docDocType)
    225225    {
    226226        return transform(stylesheet, source, parameters, docDocType, null);
     
    229229    // This method will now set the docType in the new document created and returned, if any are specified in the
    230230    // (merged) stylesheet being applied. The docDocType parameter is therefore no longer necessary nor used by default.
    231     protected Node transform(Document stylesheet, Document source, HashMap<String, Comparable> parameters, Document docDocType, Document resultNode)
     231    protected Node transform(Document stylesheet, Document source, HashMap<String, Object> parameters, Document docDocType, Document resultNode)
    232232    {
    233233        try
Note: See TracChangeset for help on using the changeset viewer.