Examples of create()


Examples of edu.indiana.extreme.xbaya.jython.script.JythonScript.create()

        XMLUtil.saveXML(workflow.toXML(), workflowFile);

        // Creates a Jython script
        File jythonFile = new File("tmp/simple-math.py");
        JythonScript script = new JythonScript(workflow, this.configuration);
        script.create();
        IOUtil.writeToFile(script.getJythonString(), jythonFile);
    }

    /**
     * @throws ComponentException

Examples of edu.indiana.extreme.xbaya.scufl.script.ScuflScript.create()

                file = new File(path + XBayaConstants.SCUFL_SCRIPT_SUFFIX);
            }

            try {
                // Create the script.
                script.create();
                // Write to a file
                IOUtil.writeToFile(script.getScript(), file);
            } catch (IOException e) {
                this.engine.getErrorWindow().error(
                        ErrorMessages.WRITE_FILE_ERROR, e);

Examples of edu.spbstu.hoteldb.interfaces.Panel.create()

      panel.connect();
    } catch (ClassNotFoundException | SQLException e) {
      e.printStackTrace();
    }

    panel.create(args);

    HBox.setHgrow((Node) panel, Priority.ALWAYS);
    content.getChildren().add(0, (Node) panel);
  }
}

Examples of edu.spbstu.hoteldb.panels.LoginPanel.create()

    List<Object> args = new LinkedList<Object>();
    args.add(0, results);
    args.add(1, this);
    LoginPanel cp = new LoginPanel();
    cp.connect();
    cp.create(args);

    HBox.setHgrow(cp, Priority.ALWAYS);
    root.getChildren().addAll(createMenuBar(), content);

    Dimension scrsize = Toolkit.getDefaultToolkit().getScreenSize();

Examples of edu.stanford.smi.protegex.owl.jena.creator.NewOwlProjectCreator.create()

    try{
      // new way to create ontology to fix xml:base issue
      Collection errors = new ArrayList();
        NewOwlProjectCreator creator = new NewOwlProjectCreator();
        creator.setOntologyName(""+path);
        creator.create(errors);
        if(!errors.isEmpty())
          throw new IOntologyError(""+errors);
        OWLModel model = creator.getOwlModel();
      //OWLModel model = ProtegeOWL.createJenaOWLModel();
     

Examples of edu.uci.ics.hyracks.algebricks.compiler.api.HeuristicCompilerFactoryBuilder.create()

        if (availableProcessors < 1) {
            builder.setClusterLocations(VXQueryMetadataProvider.getClusterLocations(nodeList));
        } else {
            builder.setClusterLocations(VXQueryMetadataProvider.getClusterLocations(nodeList, availableProcessors));
        }
        cFactory = builder.create();
    }

    public void compile(String name, Reader query, CompilerControlBlock ccb, int optimizationLevel)
            throws SystemException {
        moduleNode = XMLQueryParser.parse(name, query);

Examples of edu.vt.rt.datastructures.util.DCounter.create()

    //Populate system
    if (NODE_ID == 0) {
      start.create();
      SET.create();
      callCount.create();
      finished.create();
      //load up the list with some initial values
      Random gen = new Random(1988);
      for (int i = 0; i < NUM_ELEMS; i++) {
        SET.add(gen.nextInt(NUM_SPAN));

Examples of edu.vt.rt.datastructures.util.DSynchronizer.create()

    //Populate system
    if (NODE_ID == 0) {
      start.create();
      SET.create();
      callCount.create();
      finished.create();
      //load up the list with some initial values
      Random gen = new Random(1988);
      for (int i = 0; i < NUM_ELEMS; i++) {
        SET.add(gen.nextInt(NUM_SPAN));
      }

Examples of er.extensions.migration.ERXMigrationTable.create()

    resultItemTable.newIntBooleanColumn("isprime", false);
    resultItemTable.newTimestampColumn("modificationtime", false);
    resultItemTable.newBigIntegerColumn("numbertocheck", false);
    resultItemTable.newIntegerColumn("taskinfoid", false);
    resultItemTable.newStringColumn("workflowstate", 255, false);
    resultItemTable.create();
    resultItemTable.setPrimaryKey("id");

    ERXMigrationTable taskInfoTable = database.newTableNamed("taskinfo");
    taskInfoTable.newBigIntegerColumn("duration", false);
    taskInfoTable.newBigIntegerColumn("endnumber", true);

Examples of er.woadaptor.websockets.WebSocketFactory.create()

        wsFactory.sendUnsupportedWebSocketVersionResponse(socketChannel);
      } else {
        ChannelFuture future = handshaker.handshake(socketChannel, req);
        //TODO tie this to the channel future result?
        //Create a WebSocket instance to handle frames
        WebSocket socket = factory.create(socketChannel, req);
        WebSocketStore.defaultWebSocketStore().takeSocketForChannel(socket, socketChannel);
       
        socket.didUpgrade();
      }
    }
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.