Examples of reinitialize()


Examples of base.drawable.TimeBoundingBox.reinitialize()

           CategoryTimeBox[] is in ascending order of the respective ratio
           set TimeBoundingBox of CategoryTimeBox[] in descending ratio order
        */

        curr_timebox  = avebox.getCurrentTimeBoundingBox();
        curr_timebox.reinitialize();
        if ( isDisplayTypeEqualWeighted() ) {
            vis_typeboxes_length = 0;
            for ( idx = typeboxes.length-1; idx >= 0; idx-- ) {
                 if ( typeboxes[ idx ].isCategoryVisiblySearchable() )
                     vis_typeboxes_length++ ;
View Full Code Here

Examples of com.adito.security.forms.ShowAvailableAccountsForm.reInitialize()

     * @throws Exception
     */
    public ActionForward redisplay(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response)
                    throws Exception {
        ShowAvailableAccountsForm accountsForm = (ShowAvailableAccountsForm) form;
        accountsForm.reInitialize(request.getSession());
        return mapping.findForward("display");
    }

    /**
     * @param mapping
View Full Code Here

Examples of com.adito.security.forms.ShowAvailableRolesForm.reInitialize()

     * @throws Exception
     */
    public ActionForward redisplay(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response)
                    throws Exception {
        ShowAvailableRolesForm showAvailableRolesForm = (ShowAvailableRolesForm) form;
        showAvailableRolesForm.reInitialize(request.getSession());
        return mapping.findForward("success");
    }
   
    /**
     * Edit an existing role.
View Full Code Here

Examples of com.tommytony.war.Warzone.reinitialize()

    zone.clearThieves();
    zone.broadcast("zone.battle.next", zone.getName());
   
    PartialZoneResetJob.setSenderToNotify(zone, this.getSender());
   
    zone.reinitialize();
   
    War.war.log(this.getSender().getName() + " used nextbattle in warzone " + zone.getName(), Level.INFO);

    return true;
  }
View Full Code Here

Examples of com.tommytony.war.Warzone.reinitialize()

    this.msg("Reloading warzone " + zone.getName() + ".");
   
    PartialZoneResetJob.setSenderToNotify(zone, this.getSender())
   
    zone.reinitialize();
   
    War.war.log(this.getSender().getName() + " reset warzone " + zone.getName(), Level.INFO);

    return true;
  }
View Full Code Here

Examples of dovetaildb.bytes.SlicedBytes.reInitialize()

    ByteTable root = new ByteTable();
    if (query == null) return EMPTY_BYTE_ARRAY;
    SlicedBytes slice = new SlicedBytes(ArrayBytes.EMPTY_BYTES, 0);
    do {
      Bytes term = query.term();
      slice.reInitialize(query.term(), 0, term.getLength());
      root.count(slice, forkThreshold);
    } while(query.anyNext());
    long counted = root.hits;
    int numSlots = 1 << integerLogBase2RoundDown((long)(Math.sqrt(counted)/lengthToRowRatio));
    long minHits = (counted / numSlots) >> 8;
View Full Code Here

Examples of factOrFiction.model.Deck.reinitialize()

    service.activateContext("factOrFiction.deckEditorContext"); //$NON-NLS-1$
  }

  public void update(Observable arg0, Object arg1) {
    Deck deck = (Deck) getEditorInput().getAdapter(Deck.class);
    deck.reinitialize(CardPool.instance());
  }

  public void initializeDeckViewer() {
    Deck deck = (Deck) getEditorInput().getAdapter(Deck.class);
View Full Code Here

Examples of org.apache.commons.math.ode.EulerStepInterpolator.reinitialize()

  public void testNoReset() {

    double[]   y    =   { 0.0, 1.0, -2.0 };
    double[][] yDot = { { 1.0, 2.0, -2.0 } };
    EulerStepInterpolator interpolator = new EulerStepInterpolator();
    interpolator.reinitialize(new DummyEquations(), y, yDot, true);
    interpolator.storeTime(0);
    interpolator.shift();
    interpolator.storeTime(1);

    double[] result = interpolator.getInterpolatedState();
View Full Code Here

Examples of org.apache.commons.math.ode.sampling.NordsieckStepInterpolator.reinitialize()

        final double[] predictedScaled = new double[y0.length];
        Array2DRowRealMatrix nordsieckTmp = null;

        // set up two interpolators sharing the integrator arrays
        final NordsieckStepInterpolator interpolator = new NordsieckStepInterpolator();
        interpolator.reinitialize(y, forward);

        // set up integration control objects
        for (StepHandler handler : stepHandlers) {
            handler.reset();
        }
View Full Code Here

Examples of org.apache.commons.math.ode.sampling.NordsieckStepInterpolator.reinitialize()

        }
        setStateInitialized(false);

        // compute the initial Nordsieck vector using the configured starter integrator
        start(t0, y, t);
        interpolator.reinitialize(stepStart, stepSize, scaled, nordsieck);
        interpolator.storeTime(stepStart);

        double hNew = stepSize;
        interpolator.rescale(hNew);
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.