Package heart

Examples of heart.Action


      Debug.debug(Debug.heartTag, Level.RULES, "Executing actions of rule "+this.getName()+" (ID: "+this.getId()+")");
      for(String a : actions){
        if(a != null){
          Class<?> actionClass = Class.forName(a);
          Method method = actionClass.getMethod("execute");
                Action action = (Action)actionClass.newInstance();
          method.invoke(action);
        }
      }
     
      //TODO pass tokens, what about rule-links?
View Full Code Here

TOP

Related Classes of heart.Action

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.