Examples of Bounded


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

        super(FeatureType.OBJECTS_ONLY);
    }

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

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

        super(FeatureType.OBJECTS_ONLY);
    }

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

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

        super(FeatureType.OBJECTS_ONLY);
    }

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

Examples of org.locationtech.geogig.api.Bounded

            ib = b.children();
        }

        // bounds are not part of the Bounded.equals(Object) contract as its auxiliary information
        while (ia.hasNext()) {
            Bounded ba = ia.next();
            Bounded bb = ib.next();
            Envelope ea = new Envelope();
            Envelope eb = new Envelope();
            ba.expand(ea);
            bb.expand(eb);
            assertEquals(ea.getMinX(), eb.getMinX(), 1e-7D);
            assertEquals(ea.getMinY(), eb.getMinY(), 1e-7D);
            assertEquals(ea.getMaxX(), eb.getMaxX(), 1e-7D);
            assertEquals(ea.getMaxY(), eb.getMaxY(), 1e-7D);
        }
View Full Code Here

Examples of vash.value.Bounded

    _values[1] = this.phase = phase;
    _children[0] = child;
  }

  public Sinc(double freq, double phase, OperationNode child) {
    this(new Bounded(freq, MIN_FREQ, MAX_FREQ), new Wrapping(phase, MIN_PHASE, MAX_PHASE), child);
  }
View Full Code Here

Examples of vash.value.Bounded

  public Sinc(double freq, double phase, OperationNode child) {
    this(new Bounded(freq, MIN_FREQ, MAX_FREQ), new Wrapping(phase, MIN_PHASE, MAX_PHASE), child);
  }
 
  public Sinc(Seed s) {
    this(new Bounded(s, MIN_FREQ, MAX_FREQ), new Wrapping(s, MIN_PHASE, MAX_PHASE), null);
  }
View Full Code Here

Examples of vash.value.Bounded

    _values[1] = this.phase = phase;
    _children[0] = child;
  }

  public Sine(double freq, double phase, OperationNode child) {
    this(new Bounded(freq, MIN_FREQ, MAX_FREQ), new Wrapping(phase, MIN_PHASE, MAX_PHASE), child);
  }
View Full Code Here

Examples of vash.value.Bounded

  public Sine(double freq, double phase, OperationNode child) {
    this(new Bounded(freq, MIN_FREQ, MAX_FREQ), new Wrapping(phase, MIN_PHASE, MAX_PHASE), child);
  }
 
  public Sine(Seed s) {
    this(new Bounded(s, MIN_FREQ, MAX_FREQ), new Wrapping(s, MIN_PHASE, MAX_PHASE), null);
  }
View Full Code Here

Examples of vash.value.Bounded

  /**
   * Constructor that takes a specified value (e.g. for testing).
   */
  public Const(double init) {
    this(new Bounded(init, MIN_VALUE, MAX_VALUE));
  }
View Full Code Here

Examples of vash.value.Bounded

  /**
   * Construct with a random initial value.
   */
  public Const(Seed s) {
    this(new Bounded(s, MIN_VALUE, MAX_VALUE));
  }
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.