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.tn5250j.tools.logging.TN5250jLogger.initialize()

                      // take the default logger.
                      logger = new ConsoleLogger();

                }

                logger.initialize(clazzName);
                logger.setLevel(level);
                _loggers.put(clazzName, logger);
             }
          }
    View Full Code Here

    Examples of org.uengine.processmanager.ProcessManagerRemote.initialize()

            RoleMapping loggedRoleMapping = RoleMapping.create();
            loggedRoleMapping.setEndpoint(endpoint);

    //        ActivityReference initiatorHumanActivityReference = pm.getInitiatorHumanActivityReference(processDefinition);
    //        String initiatorDefVerId = initiatorHumanActivityReference.getActivity().getProcessDefinition().getId();
            String fantomInstanceId = pm.initialize(processDefinition, null, loggedRoleMapping);
           
    //        ProcessInstance piRemote = pm.getProcessInstance(fantomInstanceId);
            pm.executeProcess(fantomInstanceId);
           
            pm.applyChanges();
    View Full Code Here

    Examples of org.vafer.jdeb.debian.ChangesFile.initialize()

        public ChangesFile createChanges(BinaryPackageControlFile packageControlFile, File binaryPackage, ChangesProvider changesProvider) throws IOException, PackagingException {

            ChangesFile changesFile = new ChangesFile();
            changesFile.setChanges(changesProvider.getChangesSets());
            changesFile.initialize(packageControlFile);

            changesFile.set("Date", ChangesFile.formatDate(new Date()));
           
            try {
                // compute the checksums of the binary package
    View Full Code Here

    Examples of org.w3c.jigadm.editors.EditorFeeder.initialize()

                   FEEDER_CLASS_P +
                   " property undefined.");
      try {
          Class c = Class.forName(feederClass);
          feeder  = (EditorFeeder) c.newInstance();
          feeder.initialize(w,p);
      } catch (Exception ex) {
          ex.printStackTrace();
          throw new RuntimeException("StringArrayEditor mis-configured: "+
                   " unable to instantiate "+
                   feederClass +".");
    View Full Code Here

    Examples of org.w3c.jigadmin.editors.FramedResourceHelper.initialize()

          JDialog popres = new JDialog(frame, "Edit Resource", false);
          FramedResourceHelper helper = new FramedResourceHelper();
          popres.setJMenuBar(helper.getMenuBar(popres));
          PropertyManager pm = PropertyManager.getPropertyManager();
          Properties props = pm.getEditorProperties(rrw);
          helper.initialize(rrw, props);
          Container cont = popres.getContentPane();

          cont.setLayout(new GridLayout(1,1));
          cont.add(helper.getComponent());
          popres.setSize(new Dimension(500, 550));
    View Full Code Here

    Examples of org.w3c.tools.resources.FramedResource.initialize()

            FramedResource resource = new FramedResource();
            Hashtable defs = new Hashtable(5) ;
            defs.put(id, noext);
            ResourceContext context =
          updateDefaultChildAttributes(defs);
            resource.initialize(defs);
            addResource(resource, defs);
            // add a NegotiatedFrame.
            String variants[] = new String[1] ;
            variants[0] = name ;
            NegotiatedFrame negotiated = new NegotiatedFrame();
    View Full Code Here

    Examples of org.w3c.tools.resources.Resource.initialize()

        Resource root = (Resource) root_class.newInstance();
        if (defs == null)
            defs = new Hashtable(4);
        defs.put("identifier".intern(), default_root_name);
        defs.put("key".intern(), getRootKey());
        root.initialize(defs);
       
        NewStoreEntry entry = new NewStoreEntry(this,
                  ROOT_REP,
                  getRootKey());
        ResourceReference rr = entry.addResource(root, defs);
    View Full Code Here

    Examples of org.waveprotocol.box.server.waveserver.WaveletProvider.initialize()

          ((SignerInfoStore)certPathStore).initializeSignerInfoStore();
        }

        // Initialize the server.
        WaveletProvider waveServer = injector.getInstance(WaveletProvider.class);
        waveServer.initialize();
      }

      private static void initializeServlets(Injector injector, ServerRpcProvider server) {
        server.addServlet("/gadget/gadgetlist", GadgetProviderServlet.class);
    View Full Code Here

    Examples of org.woped.gui.RegistrationUI.initialize()

            getVepController().register(ViewEvent.VIEWEVENTTYPE_GUI, new GUIViewEventProcessor(ViewEvent.VIEWEVENTTYPE_GUI, this));
            getVepController().register(ViewEvent.VIEWEVENTTYPE_FILE, new FileEventProcessor(ViewEvent.VIEWEVENTTYPE_FILE, this));
           
            if(!conf.getRegistration()){
              RegistrationUI rem = new RegistrationUI();
          rem.initialize();
            }
      }
           
      public void startUI(String[] filesToOpen) {
            if (ui == null)
    View Full Code Here

    Examples of org.wso2.carbon.h2.osgi.console.H2DatabaseManager.initialize()

         */
      protected static void initializeUtilityServices () throws SQLException {
       
        //H2 database
        final H2DatabaseManager databaseManager = H2DatabaseManager.getInstance();
        databaseManager.initialize();
      }
     
        /**
         * Destroy utility services for command line client
         *
     
    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.