Show
Ignore:
Timestamp:
08/20/10 14:31:13 (21 months ago)
Author:
mtld
Message:

added xslt component stuff

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/xsltcomp-2010-08-11/pfixcore/src/de/schlund/pfixcore/workflow/Navigation.java

    r3367 r5311  
    154154    } 
    155155 
     156    public String getHandler(String page) { 
     157        NavigationElement element = pagetonavi.get(page); 
     158        if(element == null) throw new IllegalArgumentException("Page '" + page + "' not found in navigation."); 
     159        return element.getHandler(); 
     160    } 
     161     
     162     
    156163    public class NavigationElement { 
    157164        private ArrayList<NavigationElement> children = new ArrayList<NavigationElement>();