Examples of activate()


Examples of com.subgraph.vega.application.console.ConsoleHandler.activate()

    }
    if(!setupWorkspace()) {
      return IApplication.EXIT_OK;
    }
    ConsoleHandler consoleHandler = new ConsoleHandler(display, Activator.getDefault().getConsole());
    consoleHandler.activate();
   
    try {
      int returnCode = PlatformUI.createAndRunWorkbench(display, new ApplicationWorkbenchAdvisor());
      if (returnCode == PlatformUI.RETURN_RESTART)
        return IApplication.EXIT_RESTART;
View Full Code Here

Examples of com.sun.corba.ee.spi.oa.rfm.ReferenceFactoryManager.activate()

    {  
  // NOTE:  The RootPOA manager used to activated here.
  ReferenceFactoryManager rfm =
      (ReferenceFactoryManager)orb.resolve_initial_references(
    ORBConstants.REFERENCE_FACTORY_MANAGER ) ;
  rfm.activate() ;
  _logger.log(Level.FINE, "POAProtocolMgr.initializePOAs: RFM resolved and activated");
    }


    public ORB getORB()
View Full Code Here

Examples of com.sun.jmx.remote.generic.ProfileClient.activate()

        } else {
      throw new IOException("Unexpected message: " +
                msg.getClass().getName());
        }
    }
    p.activate();
    profilesList.add(p);
      }

            // Send client handshake end
            //
View Full Code Here

Examples of com.sun.jmx.remote.generic.ProfileServer.activate()

        }
        p.consumeMessage(pm);
        pm = p.produceMessage();
        mc.writeMessage(pm);
        if (p.isComplete()) {
      subject = p.activate();
        }
    } else {
        throw new IOException("Unexpected message: " +
            msg.getClass().getName());
    }
View Full Code Here

Examples of com.sun.star.frame.XTask.activate()

      Object object = event.getSource();
      if (object instanceof TaskButton)
      {
        XTask task = ((TaskButton) object).getTask();

        task.activate();       
      }
    }
  }

  protected XFrame m_xDesktop;
View Full Code Here

Examples of com.sun.star.loader.XImplementationLoader.activate()

    XImplementationLoader xImpLoader = (XImplementationLoader)UnoRuntime.queryInterface(
            XImplementationLoader.class, new JavaLoader() );
   
    // Get the factory of the ServiceManager
    XSingleComponentFactory smgr_fac = (XSingleComponentFactory)UnoRuntime.queryInterface(
            XSingleComponentFactory.class, xImpLoader.activate(
                "com.sun.star.comp.servicemanager.ServiceManager", null, null, null ) );
       
    // Create an instance of the ServiceManager
    XMultiComponentFactory xSMgr = (XMultiComponentFactory)UnoRuntime.queryInterface(
            XMultiComponentFactory.class, smgr_fac.createInstanceWithContext( null ) );
View Full Code Here

Examples of com.volantis.map.ics.imageprocessor.impl.ICSOperation.activate()

        bundleCtx.expects.getProperty(BootConstants.CONTEXT_AREA)
                 .returns(contextArea).any();

        // Lame simulation of creation by OSGi framework
        ICSOperation op = new ICSOperation();
        op.activate(componentCtx);
        try {
            op.execute(descriptor, request, response);
        } finally {
            op.deactivate(componentCtx);
        }
View Full Code Here

Examples of com.volantis.mcs.layouts.activator.FormatActivator.activate()

        IteratorConstraintFactory constraintFactory =
                new IteratorConstraintFactory();
        FormatActivator activator =
                new TemporalFormatIteratorActivator(constraintFactory);
        activator.activate(temporal);
    }

    /**
     * Creates a temporal format iterator
     * @param renderer
View Full Code Here

Examples of com.volantis.mcs.layouts.activator.RecursingFormatActivatorImpl.activate()

        // Activate all the formats.
        FormatActivatorFactoryImpl factory = new FormatActivatorFactoryImpl();
        FormatActivator activator = new RecursingFormatActivatorImpl(factory);
        Format rootFormat = layout.getRootFormat();
        activator.activate(rootFormat);

        // create container name -> {fragment, index} map
        final Map containerNameToFragments =
            buildContainerNameToPositionMap(rootFormat);
View Full Code Here

Examples of com.volantis.mcs.layouts.temporal.TemporalFormatIteratorActivator.activate()

        IteratorConstraintFactory constraintFactory =
                new IteratorConstraintFactory();
        FormatActivator activator =
                new TemporalFormatIteratorActivator(constraintFactory);
        activator.activate(temporal);
    }

    /**
     * Creates a temporal format iterator
     * @param renderer
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.