Examples of activate()


Examples of br.gov.frameworkdemoiselle.context.ViewContext.activate()

     
      if (!tempSessionContext.isActive())
        tempSessionContext.activate();
     
      if (!tempViewContext.isActive())
        tempViewContext.activate();
     
      if (!tempConversationContext.isActive())
        tempConversationContext.activate();

      registered = true;
View Full Code Here

Examples of ch.ethz.iks.r_osgi.channels.NetworkChannelFactory.activate()

            public Object addingService(
                final ServiceReference reference) {
              final NetworkChannelFactory factory = (NetworkChannelFactory) context
                  .getService(reference);
              try {
                factory.activate(RemoteOSGiServiceImpl.this);
              } catch (final IOException ioe) {
                if (log != null) {
                  log.log(LogService.LOG_ERROR, ioe
                      .getMessage(), ioe);
                }
View Full Code Here

Examples of codechicken.enderstorage.common.TileFrequencyOwner.activate()

  }

  @Override
  public void openEnderChest(World world, int x, int y, int z, EntityPlayer player) {
    TileFrequencyOwner tile = (TileFrequencyOwner) world.getTileEntity(x, y, z);
    tile.activate(player, 0);
  }
}
View Full Code Here

Examples of com.adito.extensions.ExtensionBundle.activate()

      installExtension(newBundle);
      postInstallExtension(newBundle, request);
      if (newBundle.getStatus().isStartedOrActivated()) {
        newBundle.stop();
        newBundle.start();
        newBundle.activate();
      }
      fireBundleEvent(CoreEventConstants.UPDATE_EXTENSION, newBundle);
      return newBundle;
    }
  }
View Full Code Here

Examples of com.arjuna.ats.arjuna.AtomicAction.activate()

   public int getStatus(Uid uid)
   {
      AtomicAction action = new AtomicAction(uid);

      action.activate();

      return action.status();
   }
}
View Full Code Here

Examples of com.baasbox.dao.ScriptsDao.activate()

        ScriptsDao dao = ScriptsDao.getInstance();
        ODocument doc = dao.getByName(name);
        if (doc == null){
            return null;
        }
        return dao.activate(doc,activate);
    }

    public static ScriptResult invoke(ScriptCall call) throws ScriptEvalException{
        if (Logger.isDebugEnabled()) Logger.debug("Invoking script: " + call.scriptName);
        MAIN.set(call.scriptName);
View Full Code Here

Examples of com.boxysystems.scriptmonkey.intellij.ui.ScriptMonkeyToolWindow.activate()

        Project project = ProjectUtil.getProject(anActionEvent);
        ScriptMonkeyPlugin scriptMonkeyPlugin = ScriptMonkeyPlugin.getInstance(project);
        if (scriptMonkeyPlugin != null) {
            ScriptMonkeyToolWindow toolWindow = scriptMonkeyPlugin.getToolWindow();
            toolWindow.activate();
        }
    }
}
View Full Code Here

Examples of com.bulletphysics.collision.dispatch.CollisionObject.activate()

              .getMotionState();
          myMotionState.graphicsWorldTrans
              .set(myMotionState.startWorldTrans);
          colObj.setWorldTransform(myMotionState.graphicsWorldTrans);
          colObj.setInterpolationWorldTransform(myMotionState.startWorldTrans);
          colObj.activate();
        }
        // removed cached contact points
        dynamicsWorld
            .getBroadphase()
            .getOverlappingPairCache()
View Full Code Here

Examples of com.bulletphysics.dynamics.RigidBody.activate()

      // rBody.setCollisionFlags(CollisionFlags.NO_CONTACT_RESPONSE);
      rBody.clearForces();
      rBody.setAngularVelocity(new Vector3f(0, 0, 0));
      rBody.setLinearVelocity(new Vector3f(0, 0, 0));
      rBody.clearForces();
      rBody.activate(false);

    }

    float ms = getDeltaTimeMicroseconds();
View Full Code Here

Examples of com.db4o.ObjectContainer.activate()

    /* Assert NewsCounter / NewsCounterItem */
    NewsCounter newsCounter = db.query(NewsCounter.class).get(0);
    db.activate(newsCounter, Integer.MAX_VALUE);
    NewsCounter otherNewsCounter = defragmentedDb.query(NewsCounter.class).get(0);
    defragmentedDb.activate(otherNewsCounter, Integer.MAX_VALUE);
    assertNotNull(newsCounter);
    assertNotNull(otherNewsCounter);

    NewsCounterItem item = otherNewsCounter.get("http://www.rssowl.org");
    assertEquals(1, item.getNewCounter());
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.