Package jodd.madvoc.macro

Examples of jodd.madvoc.macro.PathMacros


   * path chunks. Returns either <code>null</code>, if
   * no action path contains no macros, or instance of the <code>PathMacro</code>
   * implementations.
   */
  public PathMacros buildActionPathMacros(String actionPath) {
    PathMacros pathMacros = createPathMacro();

    if (pathMacros.init(actionPath) == false) {
      return null;
    }

    return pathMacros;
  }
View Full Code Here


  /**
   * Creates new action config set from the action path.
   */
  protected ActionConfigSet createActionConfigSet(String actionPath) {
    PathMacros pathMacros = actionPathMacroManager.buildActionPathMacros(actionPath);

    return new ActionConfigSet(actionPath, pathMacros);
  }
View Full Code Here

   * path chunks. Returns either <code>null</code>, if
   * no action path contains no macros, or instance of the <code>PathMacro</code>
   * implementations.
   */
  public PathMacros buildActionPathMacros(String actionPath) {
    PathMacros pathMacros = createPathMacro();

    if (pathMacros.init(actionPath, madvocConfig.getPathMacroSeparators()) == false) {
      return null;
    }

    return pathMacros;
  }
View Full Code Here

  /**
   * Creates new action config set from the action path.
   */
  protected ActionConfigSet createActionConfigSet(String actionPath) {
    PathMacros pathMacros = actionPathMacroManager.buildActionPathMacros(actionPath);

    return new ActionConfigSet(actionPath, pathMacros);
  }
View Full Code Here

TOP

Related Classes of jodd.madvoc.macro.PathMacros

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.