Examples of Values


Examples of jsynoptic.plugins.java3d.Values

        }
    }

    @Override
    public void undoRedoPerfomed(boolean isUndo) {
        Values v = _editor.getPropertyValue();
        _newValue = false;
        _table.setModel(new Model(v));
    }
View Full Code Here

Examples of jsynoptic.plugins.java3d.Values

    public DataEdit(DataAnimator object) {
        super(object, Default);
    }

    public Values getOldValues() {
        return new Values(_oldValue);
    }
View Full Code Here

Examples of org.apache.hadoop.tools.rumen.Pre21JobHistoryConstants.Values

    long inputRecords = -1;
    long outputBytes = -1;
    long outputRecords = -1;
    long heapMegabytes = -1;

    Values type = loggedTask.getTaskType();
    if ((type != Values.MAP) && (type != Values.REDUCE)) {
      throw new IllegalArgumentException(
          "getTaskInfo only supports MAP or REDUCE tasks: " + type.toString()
              + " for task = " + loggedTask.getTaskID());
    }

    for (LoggedTaskAttempt attempt : attempts) {
      attempt = sanitizeLoggedTaskAttempt(attempt);
View Full Code Here

Examples of org.ardverk.dht.storage.Index.Values

   
    final int m = dst.size()/2-1;
    final int maxCount = 6;
   
    KUID marker = CollectionUtils.nth(dst, m);
    Values values = index.values(key, marker, maxCount);
   
    TestCase.assertEquals(marker, values.firstKey());
    TestCase.assertTrue(values.size() <= maxCount);
  }
View Full Code Here

Examples of org.graphstream.ui.graphicGraph.stylesheet.Values

     *            The max ordinate of the area.
     * @return True if the node lies in the given area.
     */
    protected boolean isNodeIn(GraphicNode node, double X1, double Y1,
                               double X2, double Y2) {
        Values size = node.getStyle().getSize();
        double w2 = metrics.lengthToPx(size, 0) / 2;
        double h2 = size.size() > 1 ? metrics.lengthToPx(size, 1) / 2 : w2;
        Point2D.Double src = new Point2D.Double(node.getX(), node.getY());
        boolean vis = true;

        Tx.transform(src, src);

View Full Code Here

Examples of org.mapfish.print.output.Values

        final DataSourceAttributeValue value = new DataSourceAttributeValue();
        value.attributesValues = new Map[pValue.size()];
        for (int i = 0; i < pValue.size(); i++) {
            PObject rowData = pValue.getObject(i);
            final Values valuesForParsing = new Values();
            valuesForParsing.populateFromAttributes(template, parser, this.attributes, rowData);
            value.attributesValues[i] = valuesForParsing.asMap();
        }

        return 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.