Examples of createView()


Examples of org.gephi.graph.api.GraphModel.createView()

//            Graph g = dynamicGraph.getSnapshotGraph(low, high);
           
           
            GraphView currentView = graphModel.getVisibleView();
            Graph graph = graphModel.getGraphVisible();
            GraphView view = graphModel.createView();
            Graph g = graphModel.getGraph(view);
           
            TimestampIndex<Node> nodeIndex = graphModel.getNodeTimestampIndex(currentView);
            for(Node node : nodeIndex.get(low, high)) {
                g.addNode(node);
View Full Code Here

Examples of org.ibeans.impl.view.TextView.createView()

    public String getUsage()
    {
        if (usage == null)
        {
            TextView view = new TextView();
            usage = view.createView(ibean);
        }
        return usage;
    }

    @Override
View Full Code Here

Examples of org.openntf.domino.Database.createView()

      Database db = session.getDatabase("", "imdb/movies.nsf");
      //      db.setDelayUpdates(true);
      marktime = System.nanoTime();
      timelog("Beginning view build...");
      View byLength = db.getView("byLength");
      View btitles = db.createView("BTitles", "@Begins(Title; \"B\")", byLength);
      //      View btitles = db.createView("BTitles", "@Begins(Title; \"B\")");
      ViewColumn length = btitles.createColumn(1, "Title", "Title");
      length.setSorted(true);
      timelog("View defined.");
      btitles.refresh();
View Full Code Here

Examples of org.sonatype.nexus.componentviews.config.ViewFactory.createView()

    // A changed (and persisted) configuration created by an admin
    final ViewConfig config = mock(ViewConfig.class);

    final ViewFactory factory = factorySource.getFactory(config.getFactoryName());
    final View newView = factory.createView(config);

    // De-register the existing view
    final View existingView = viewRegistry.findViewByName(config.getViewName());
    if (existingView != null) {
      viewRegistry.unregisterView(existingView);
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.