Update of /var/cvs/applications/vpro-wizards/src/org/mmbase/applications/vprowizards/spring In directory james.mmbase.org:/tmp/cvs-serv13390/src/org/mmbase/applications/vprowizards/spring
Modified Files: BasicCommand.java Log Message: mvn javadoc:jar was giving horribly stupid errors on me for this. this solves it See also: http://cvs.mmbase.org/viewcvs/applications/vpro-wizards/src/org/mmbase/applications/vprowizards/spring Index: BasicCommand.java =================================================================== RCS file: /var/cvs/applications/vpro-wizards/src/org/mmbase/applications/vprowizards/spring/BasicCommand.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- BasicCommand.java 12 Jan 2009 11:15:29 -0000 1.2 +++ BasicCommand.java 28 Apr 2009 15:40:44 -0000 1.3 @@ -21,27 +21,23 @@ /** * This class accepts a number of Action objects and maps them to their names, so the data binder can access them. For - * each action class that is registered a {...@link MapUtils#lazyMap(Map, Factory)} is created, where an instance of + * each action class that is registered a Map is created, where an instance of * the action class is mapped to a string id. This way you can create more than one actions of one type in one request. * * * @author Ernst Bunders - * + * @version $Id: BasicCommand.java,v 1.3 2009/04/28 15:40:44 michiel Exp $ */ public class BasicCommand implements Command { private Map<String, Map<String, Action>> actions = new LinkedHashMap<String, Map<String, Action>>(); private static final Logger log = Logging.getLoggerInstance(BasicCommand.class); - /* (non-Javadoc) - * @see org.mmbase.applications.vprowizard.spring.Command#getActions() - */ public Map<String, Map<String, Action>> getActions() { return actions; } - /* (non-Javadoc) - * @see org.mmbase.applications.vprowizard.spring.Command#processActions(org.mmbase.bridge.Transaction, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.util.Map, org.mmbase.applications.vprowizard.spring.ResultContainer) - */ + + public void processActions(HttpServletRequest request, HttpServletResponse response, ResultContainer resultContainer) { //we only iterate over the actions until there is an error @@ -64,7 +60,7 @@ } /** - * We have to wrap the Instationation Factory, becouse the LazyMap expects a factory of generic type <Action>, but + * We have to wrap the Instationation Factory, becouse the LazyMap expects a factory of generic type Action, but * the instantiation factory has no differentiation between the type it instantiates and the type it returns. So * We create an implicit cast here (bit silly). */ _______________________________________________ Cvs mailing list Cvs@lists.mmbase.org http://lists.mmbase.org/mailman/listinfo/cvs