Examples of DebugFacet


Examples of org.apache.isis.metamodel.facets.actions.debug.DebugFacet

    ExecutedFacet executedFacet = (ExecutedFacet) peer.getFacet(ExecutedFacet.class);
    return executedFacet == null?ObjectAction.DEFAULT:executedFacet.getTarget();
  }

  public Type getType() {
    DebugFacet debugFacet = (DebugFacet) peer.getFacet(DebugFacet.class);
    if (debugFacet != null) {
      return ObjectAction.DEBUG;
    }
    ExplorationFacet explorationFacet = (ExplorationFacet) peer.getFacet(ExplorationFacet.class);
    if (explorationFacet != null) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.