Package org.japura.controller.annotations

Examples of org.japura.controller.annotations.ChildController


  protected abstract Class<?> getSupportedClass();

  @Override
  public final <E> E get(Class<E> clss) {
  ChildController cc = clss.getAnnotation(ChildController.class);
  if (cc != null && cc.getOnlyFromGroup()) {
    throw new ControllerException(
      "You need get the child controller "
        + clss.getName()
        + " through the group. Use getGroup().get() or Controller.getFromGroup() method.");
  }
View Full Code Here

TOP

Related Classes of org.japura.controller.annotations.ChildController

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.