Examples of IVennObject


Examples of bnGUI.venn.diagram.IVennObject

    // set colors from unfiltered VennObjects (colors should not change if groups are deactivated)
    if (unfilteredDataSplitter != null && unfilteredDataSplitter.getModels() != null
        && unfilteredDataSplitter.getModels().length > 0) {
      for (int i = 0; i < filteredModel.getNumGroups(); i++) {
        final int ggid = filteredModel.localToGlobalGroupID(i);
        IVennObject unfiltered = getUnfilteredVennObject(ggid);
        assert unfiltered != null;
        getFilteredVennObject(i).setFillColor(unfiltered.getFillColor());
      }
    }
  }
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.