Examples of initialize()

  • org.xtreemfs.babudb.sandbox.RandomGenerator.initialize()
    Generates the static meta-operations scenario. @param seed - has to be the same at every BabuDB. @return the operations scenario.
  • pdp.scrabble.game.Player.initialize()
  • persistence.antlr.collections.AST.initialize()
  • ptolemy.actor.Director.initialize()
    Initialize the model controlled by this director. Set the current time to the start time or the current time of the executive director, and then invoke the initialize() method of this director on each actor that is controlled by this director. If the container is not an instance of CompositeActor, do nothing. This method should typically be invoked once per execution, after the preinitialization phase, but before any iteration. It may be invoked in the middle of an execution, if reinitialization is desired. Since type resolution has been completed and the current time is set, the initialize() method of a contained actor may produce output or schedule events. If stop() is called during this methods execution, then stop initializing actors immediately. This method is not synchronized on the workspace, so the caller should be. @exception IllegalActionException If the initialize() method ofone of the associated actors throws it.
  • ptolemy.actor.Manager.initialize()
    Initialize the model. This calls the preinitialize() method of the container, followed by the resolveTypes() and initialize() methods. Set the Manager's state to PREINITIALIZING and INITIALIZING as appropriate. This method is read synchronized on the workspace. @exception KernelException If the model throws it. @exception IllegalActionException If the model is already running, orif there is no container.
  • ptolemy.copernicus.kernel.GeneratorAttribute.initialize()
    If this GeneratorAttribute has not yet been initialized, the initialized it by reading the moml file named by the initialParametersURL and creating Parameters and Variables accordingly.
  • ptolemy.distributed.common.DistributedActor.initialize()
    Begin execution of the actor. @exception RemoteException If a communication-related exception mayoccur during the execution of a remote method call.
  • ptolemy.graph.InequalityTerm.initialize()
    Initialize the value of this term to the specified CPO element. If this InequalityTerm is a simple variable that can be set to any CPO element, set the value of the variable to the specified argument. In this case, this method is equivalent to setValue() with the same argument. In some applications, this term is a structured object that only part of it is a simple variable. In this case, set that variable part to the specified argument. @param e An Object representing an element in the underlying CPO. @exception IllegalActionException If this term is not a variable.
  • q_impress.pmi.lib.services.loadsave.LoadingService.initialize()
  • q_impress.pmi.lib.services.loadsave.SavingService.initialize()
  • rs.frenjoynet.core.core.BaseFacade.initialize()
  • shapes.OtherClass.initialize()
    initialize

  • share.LogWriter.initialize()
    initialization
  • sicel.compiler.parser.Lexer.initialize()
  • sos.stresstest.dialogtest.SOSDialogTest.initialize()
  • structures.Network.initialize()
    Initializes individual columns within the entire Network.
  • sun.security.pkcs11.Secmod.initialize()
    Initialize this Secmod. @param configDir the directory containing the NSS configurationfiles such as secmod.db @param nssLibDir the directory containing the NSS libraries(libnss3.so or nss3.dll) or null if the library is on the system default shared library path @throws IOException if NSS has already been initialized,the specified directories are invalid, or initialization fails for any other reason
  • testrf.shared.TestRequestFactory.initialize()
  • uptimemart.Database.initialize()
    Creates the tables if the table does not already exist

    This method determines whether the SERVERS database has been created, if not create it.

  • us.b3k.kafka.ws.transforms.Transform.initialize()
  • vsv.VSVModel.initialize()
  • waffle.windows.auth.IWindowsCredentialsHandle.initialize()
    Initialize.
  • waffle.windows.auth.impl.WindowsSecurityContextImpl.initialize()
  • weka.experiment.InstanceQuery.initialize()
  • wpn.hdri.ss.engine.EngineInitializer.initialize()
  • xbird.xquery.func.constructor.CastingFunction.initialize()

  • Examples of org.wso2.carbon.ui.UIResourceRegistry.initialize()

            RegistryService registryService = getRegistryService();
            Registry registry = registryService.getLocalRepository();

            UIBundleDeployer uiBundleDeployer = new UIBundleDeployer();
            UIResourceRegistry uiResourceRegistry = new UIResourceRegistry();
            uiResourceRegistry.initialize(bundleContext);
            uiResourceRegistry.setDefaultUIResourceProvider(
                    uiBundleDeployer.getBundleBasedUIResourcePrvider());
    //        BundleResourcePathRegistry resourcePathRegistry = uiBundleDeployer.getBundleResourcePathRegistry();

            HttpContext commonContext =
    View Full Code Here

    Examples of org.xmlBlaster.client.protocol.I_CallbackServer.initialize()

             log.info("Creating default callback server type=" + getType());
             I_CallbackServer server = glob.getCbServerPluginManager().getPlugin(getType(), getVersion());
             // NOTE: This address should come from the client !!!
             org.xmlBlaster.util.qos.address.CallbackAddress cba = new org.xmlBlaster.util.qos.address.CallbackAddress(glob);
             // TODO: extract the real loginName from connectQos
             server.initialize(this.glob, getLoginName(), cba, this.cbClient);
             // NOTE: This happens only if the client has no callback configured, we create a faked one here (as the SOCKET plugin needs it)
          }

          try {
             MsgInfo parser = new MsgInfo(glob, MsgInfo.INVOKE_BYTE, MethodName.CONNECT, sessionId); // sessionId is usually null on login, on reconnect != null
    View Full Code Here

    Examples of org.xmlBlaster.client.queuemsg.ClientEntryFactory.initialize()

          return manager;
       }

       public CommonTableDatabaseAccessor createClientAccessorOne() throws Exception {
          ClientEntryFactory sf = new ClientEntryFactory();
          sf.initialize(this.globalOne);
          String queueCfg = this.globalOne.getProperty().get("QueuePlugin[JDBC][1.0]", (String) null);
          Properties queueProps = parsePropertyValue(queueCfg);
          JdbcConnectionPool pool = new JdbcConnectionPool();
          pool.initialize(this.globalOne, queueProps);
          CommonTableDatabaseAccessor manager = new CommonTableDatabaseAccessor(pool, sf, "dbupdate.ClientOneToThree", null);
    View Full Code Here

    Examples of org.xmlBlaster.engine.mime.xpath.XPathFilter.initialize()

       public void testXpathQos() throws Exception {
          ServerScope scope = new ServerScope();
          Global glob = scope;
          XPathFilter filter = new XPathFilter();
          filter.initialize(scope);
          String content = "SomethingFancy";
          String queryStr = "/qos";
          String qos = "<qos/>";
         
          MsgUnit msgUnit = new MsgUnit("<key oid='Hello'/>", content, qos);
    View Full Code Here

    Examples of org.xmlBlaster.engine.msgstore.I_Map.initialize()

             final long maxBytesCache = 4*sizeEmpty;
             prop.setMaxBytes(1000000);
             prop.setMaxBytesCache(maxBytesCache);
             assertEquals(ME+": Wrong capacity", 1000000, prop.getMaxBytes());
             assertEquals(ME+": Wrong cache capacity", maxBytesCache, prop.getMaxBytesCache());
             i_map.initialize(storageId, prop);
             assertEquals(ME+": Wrong queue ID", storageId, i_map.getStorageId());

             long numOfBytes = 0;
             for(int i=0; i<queueEntries.length; i++) {
                i_map.put(queueEntries[i]);
    View Full Code Here

    Examples of org.xmlBlaster.engine.queuemsg.ServerEntryFactory.initialize()

       }

       public CommonTableDatabaseAccessor createServerScopeAccessorOne() throws Exception {
          this.serverScopeOne.setTopicAccessor(new TopicAccessor(this.serverScopeOne));
          ServerEntryFactory sf = new ServerEntryFactory();
          sf.initialize(this.serverScopeOne);
          String queueCfg = this.serverScopeOne.getProperty().get("QueuePlugin[JDBC][1.0]", (String) null);
          Properties queueProps = parsePropertyValue(queueCfg);
          JdbcConnectionPool pool = new JdbcConnectionPool();
          pool.initialize(this.serverScopeOne, queueProps);
          CommonTableDatabaseAccessor manager = new CommonTableDatabaseAccessor(pool, sf, "dbupdate.OneToThree", null);
    View Full Code Here

    Examples of org.xmlBlaster.util.queue.jdbc.JdbcConnectionPool.initialize()

          ServerEntryFactory sf = new ServerEntryFactory();
          sf.initialize(this.serverScopeOne);
          String queueCfg = this.serverScopeOne.getProperty().get("QueuePlugin[JDBC][1.0]", (String) null);
          Properties queueProps = parsePropertyValue(queueCfg);
          JdbcConnectionPool pool = new JdbcConnectionPool();
          pool.initialize(this.serverScopeOne, queueProps);
          CommonTableDatabaseAccessor manager = new CommonTableDatabaseAccessor(pool, sf, "dbupdate.OneToThree", null);
          pool.registerStorageProblemListener(manager);
          manager.setUp();
          return manager;
       }
    View Full Code Here

    Examples of org.xtreemfs.babudb.sandbox.RandomGenerator.initialize()

        Random random = new Random();
        long testSeed = RandomGenerator.getRandomSeed();
        RandomGenerator testGen1 = new RandomGenerator();
        RandomGenerator testGen2 = new RandomGenerator()
        testGen1.initialize(testSeed);
        testGen2.initialize(testSeed);
       
        assert (RandomGenerator.MAX_SEQUENCENO<((long) Integer.MAX_VALUE)) : "This test cannot handle such a big MAX_SEQUENCENO.";
        int viewID = random.nextInt(RandomGenerator.MAX_VIEWID-(RandomGenerator.MAX_VIEWID/2))+1;
        long sequenceNO = random.nextInt((int) (RandomGenerator.MAX_SEQUENCENO-1L))+1L;
        LSN testLSN = new LSN(viewID,sequenceNO);
    View Full Code Here

    Examples of pdp.scrabble.game.Player.initialize()

              Eplayer.getAttributeValue("isIA"));

          Player player = FACTORY.createPlayer(
              this, null, 0, isIA, null);

          player.initialize();
          player.load(Eplayer);
          this.addPlayer(player);
        }

        this.mainFrame.getOptionsPanel().update();
    View Full Code Here

    Examples of persistence.antlr.collections.AST.initialize()

        public AST create(int type) {
        Class c = getASTNodeType(type);
        AST t = create(c);
        if ( t!=null ) {
          t.initialize(type, "");
        }
        return t;
      }

      public AST create(int type, String txt) {
    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.