Examples of reset()


Examples of davaguine.jmac.tools.ByteArrayReader.reset()

        //move the remaining data to the front
        System.arraycopy(al = m_pBitArray, j = (int) nBitArrayIndex, al, 0, (int) (al.length - nBitArrayIndex));

        //read the new data
        ByteArrayReader reader = m_pReader;
        reader.reset(m_pIO, j << 2);
        long l1;
        int i = (int) ((l1 = m_nElements) - nBitArrayIndex);
        if ((long) i < l1)
            do {
                al[i] = reader.readUnsignedInt();
View Full Code Here

Examples of de.danet.an.workflow.internalapi.ExtActivityLocal.reset()

      Collection resetActs = (Collection)item[1];

      if (logger.isDebugEnabled ()) {
    logger.debug ("Resetting (true): " + toAct);
      }
      toAct.reset (true, false);
            resetTokens (toAct);
      for (Iterator i = resetActs.iterator(); i.hasNext(); ) {
    ExtActivityLocal resAct = (ExtActivityLocal)i.next();
    if (logger.isDebugEnabled ()) {
        logger.debug ("Resetting (false): " + resAct);
View Full Code Here

Examples of de.dermoba.srcp.devices.SERVER.reset()

        }

        public void actionPerformed(ActionEvent e) {
            SERVER serverDevice = new SERVER(session);
            try {
                serverDevice.reset();
            } catch (SRCPException e1) {
                ExceptionProcessor.getInstance().processException(e1);
            }
        }
    }
View Full Code Here

Examples of de.esoco.j2me.storage.HierarchicalRecordStorage.reset()

        aDataModel.setProgressMonitor(rMonitor);
        aDataModel.initFromStorage();

        // init will read the data completely; reset the storage to free
        // allocated resources like streams and buffers
        aHRS.reset();
      }
      catch (Exception e)
      {
        throw new UserNotificationException(getString("JL_MtError"),
                          getString("MsInitMdl"), e);
View Full Code Here

Examples of de.esoco.j2me.util.ProgressMonitor.reset()

  {
    ProgressMonitor m = getProgressMonitor();

    if (m != null)
    {
      m.reset();
    }
  }

  /***************************************
   * Overloaded to write additional node fields (currently three reserved
View Full Code Here

Examples of de.innovationgate.eclipse.editors.helpers.CharacterScannerWrapper.reset()

          wrapper.unread();
          c = (char) wrapper.read();
          if (c != '\\') {
            count++;
          }
          wrapper.reset();
        }
        scannerWrapper.unread();
        scannerWrapper.unread();
        //bug fix #00000822
                if (c == '\n') {
View Full Code Here

Examples of de.iritgo.aktera.authentication.UserEnvironment.reset()

            log.error("Logout Error", ee);
            throw new ModelException(ee);
          }

          userEnv.clearAttributes();
          userEnv.reset();

          //          DefaultContext dc = (DefaultContext) req.getContext ();
          //          dc.put (UserEnvironment.CONTEXT_KEY, null);
          PreferencesManager preferencesManager = (PreferencesManager) SpringTools
                  .getBean(PreferencesManager.ID);
View Full Code Here

Examples of de.maramuse.soundcomp.process.Time.reset()

    of.setSource(-1, mixR, OUT.i);
    advancerRegistry.registerAdvancer(time);
    advancerRegistry.registerAdvancer(of);
    advancerRegistry.registerAdvancer(mixR);
    advancerRegistry.registerAdvancer(mixL);
    time.reset();
    System.out.println(""+(System.currentTimeMillis()-calcTime)/1000+": total song time: "+getTimestamp(104));
    double lastTime=0;
    for(; time.getValue(StandardParameters.OUT.i)<getTimestamp(103);){
    advancerRegistry.advanceAll();
    if(time.getValue(OUT.i)>lastTime+1){
View Full Code Here

Examples of de.novanic.eventservice.client.event.command.schedule.ClientCommandSchedulerFactory.reset()

    public void testReset() {
        ClientCommandSchedulerFactory theClientCommandSchedulerFactory = ClientCommandSchedulerFactory.getInstance();
        ClientCommandScheduler theClientCommandScheduler = theClientCommandSchedulerFactory.getClientCommandScheduler();
        assertNotNull(theClientCommandScheduler);

        theClientCommandSchedulerFactory.reset();

        ClientCommandScheduler theClientCommandScheduler_2 = theClientCommandSchedulerFactory.getClientCommandScheduler();
        assertNotNull(theClientCommandScheduler_2);
        assertNotSame(theClientCommandScheduler, theClientCommandScheduler_2);
View Full Code Here

Examples of de.odysseus.calyxo.base.misc.CalyxoVariableResolver.reset()

      AssertVariableResolver resolver =
        new AssertVariableResolver(request, params, result);
      Iterator asserts = this.asserts.iterator();
      while (asserts.hasNext()) {
        Assert azzert = (Assert)asserts.next();
        resolver.reset();
        boolean asserted = azzert.eval(resolver);
        if (!asserted && !resolver.isInvalidPropertyReferenced()) {
          result.assertionFailed(resolver, azzert.getMessage());
        }
      }
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.