Package jodd.madvoc.component

Examples of jodd.madvoc.component.ActionMethodParser


  @Test
  public void testMarkerClass() {
    WebApplication webapp = new WebApplication(true);
    webapp.registerMadvocComponents();
    ActionMethodParser actionMethodParser = webapp.getComponent(ActionMethodParser.class);
    MadvocConfig madvocConfig = webapp.getComponent(MadvocConfig.class);
    RootPackages rootPackages = madvocConfig.getRootPackages();

    String thisPackageName = this.getClass().getPackage().getName();
View Full Code Here


  @Test
  public void testDefaultMethods() {
    WebApplication webapp = new WebApplication(true);
    webapp.registerMadvocComponents();
    ActionMethodParser actionMethodParser = webapp.getComponent(ActionMethodParser.class);

    ActionConfig cfg = parse(actionMethodParser, "tst.SuperAction#add");

    assertNotNull(cfg);
  }
View Full Code Here

TOP

Related Classes of jodd.madvoc.component.ActionMethodParser

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.