Package com.google.devtools.depan.eclipse.views.tools.RelationCount

Examples of com.google.devtools.depan.eclipse.views.tools.RelationCount.RangeOption


    /**
     * Provide an edge count filter that corresponds to the UI's values.
     */
    public EdgeCountPredicate getIncludeTest() {
      RangeOption option = COMBO_DISPLAY[rangeOp.getSelectionIndex()];
      int loValue = parseLimit(loLimit.getText(), 0);
      int hiValue = parseLimit(hiLimit.getText(), loValue + 1);
      return option.getIncludeTest(loValue, hiValue);
    }
View Full Code Here

TOP

Related Classes of com.google.devtools.depan.eclipse.views.tools.RelationCount.RangeOption

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.