Examples of Hidden


Examples of com.pointcliki.dizgruntled.logic.Hidden

    } else if (logic.equals("TileTrigger") || logic.equals("TileSecretTrigger") || logic.equals("SecretLevelTrigger")) {
      l = new Effect();
    } else if (logic.equals("TileTriggerSwitch")) {
      l = new Cause();
    } else if (logic.equals("CoveredPowerup") || logic.equals("Brickz")) {
      l = new Hidden();
    } else if (logic.equals("RollingBall")) {
      l = new RollingBall();
    } else if (logic.equals("ExitTrigger")) {
      l = new Fort();
    } else if (logic.equals("FortressFlag")) {
View Full Code Here

Examples of org.apache.isis.applib.annotation.Hidden

        super(FeatureType.OBJECTS_ONLY);
    }

    @Override
    public void process(final ProcessClassContext processClassContext) {
        final Hidden annotation = Annotations.getAnnotation(processClassContext.getCls(), Hidden.class);
        FacetUtil.addFacet(create(annotation, processClassContext.getFacetHolder()));
    }
View Full Code Here

Examples of org.apache.isis.applib.annotation.Hidden

        // no-op if null
        FacetUtil.addFacet(hiddenFacet);
    }
   
    private static HiddenFacet createFromAnnotationIfPossible(final ProcessMethodContext processMethodContext) {
        final Hidden hiddenAnnotation = Annotations.getAnnotation(processMethodContext.getMethod(), Hidden.class);
        return hiddenAnnotation != null
                ? new HiddenFacetOnMemberAnnotation(hiddenAnnotation.when(), hiddenAnnotation.where(), processMethodContext.getFacetHolder())
                : null;
    }
View Full Code Here

Examples of org.apache.isis.applib.annotation.Hidden

        super(FeatureType.OBJECTS_ONLY);
    }

    @Override
    public void process(final ProcessClassContext processClassContext) {
        final Hidden annotation = Annotations.getAnnotation(processClassContext.getCls(), Hidden.class);
        FacetUtil.addFacet(create(annotation, processClassContext.getFacetHolder()));
    }
View Full Code Here

Examples of org.apache.isis.applib.annotation.Hidden

        // no-op if null
        FacetUtil.addFacet(hiddenFacet);
    }
   
    private static HiddenFacet createFromAnnotationIfPossible(final ProcessMethodContext processMethodContext) {
        final Hidden hiddenAnnotation = Annotations.getAnnotation(processMethodContext.getMethod(), Hidden.class);
        return hiddenAnnotation != null
                ? new HiddenFacetOnMemberAnnotation(hiddenAnnotation.when(), hiddenAnnotation.where(), processMethodContext.getFacetHolder())
                : null;
    }
View Full Code Here

Examples of org.apache.isis.applib.annotation.Hidden

        super(FeatureType.OBJECTS_ONLY);
    }

    @Override
    public void process(final ProcessClassContext processClassContaxt) {
        final Hidden annotation = getAnnotation(processClassContaxt.getCls(), Hidden.class);
        FacetUtil.addFacet(create(annotation, processClassContaxt.getFacetHolder()));
    }
View Full Code Here

Examples of org.apache.isis.applib.annotation.Hidden

        super(FeatureType.MEMBERS);
    }

    @Override
    public void process(final ProcessMethodContext processMethodContext) {
        final Hidden annotation = getAnnotation(processMethodContext.getMethod(), Hidden.class);
        FacetUtil.addFacet(create(annotation, processMethodContext.getFacetHolder()));
    }
View Full Code Here

Examples of org.apache.isis.applib.annotation.Hidden

        super(FeatureType.MEMBERS);
    }

    @Override
    public void process(final ProcessMethodContext processMethodContext) {
        final Hidden annotation = Annotations.getAnnotation(processMethodContext.getMethod(), Hidden.class);
        FacetUtil.addFacet(create(annotation, processMethodContext.getFacetHolder()));
    }
View Full Code Here

Examples of org.apache.isis.viewer.bdd.common.fixtures.perform.checkthat.Hidden

import org.apache.isis.viewer.bdd.common.fixtures.perform.checkthat.collections.Emptiness;

public class CheckCollection extends PerformCheckThatAbstract {

    public CheckCollection(final Perform.Mode mode) {
        super("check collection", OnMemberColumn.REQUIRED, mode, new Hidden(), new Visible(), new Disabled(), new Usable(), new Emptiness(AssertsEmpty.EMPTY), new Emptiness(AssertsEmpty.NOT_EMPTY), new Containment(AssertsContainment.CONTAINS), new Containment(AssertsContainment.DOES_NOT_CONTAIN));
    }
View Full Code Here

Examples of org.apache.isis.viewer.bdd.common.fixtures.perform.checkthat.Hidden

import org.apache.isis.viewer.bdd.common.fixtures.perform.checkthat.action.ArgumentSetValid;

public class CheckAction extends PerformCheckThatAbstract {

    public CheckAction(final Perform.Mode mode) {
        super("check action", OnMemberColumn.REQUIRED, mode, new Hidden(), new Visible(), new Disabled(), new Usable(), new ArgumentSetValid(), new ArgumentSetNotValid());
    }
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.