Package org.jboss.tools.jmx.jvmmonitor.core

Examples of org.jboss.tools.jmx.jvmmonitor.core.IActiveJvm


  }
 
  protected IConnectionWrapper findJVMConnectionWrapper(IServer server) {
    // TODO look through the list of JVM connections to find the one
    // we think belongs to us right now
    IActiveJvm jvm = KarafJVMFacadeUtility.findJvmForServer(server);
    if( jvm != null )
      return JVMConnectionUtility.findConnectionForJvm(jvm);
    return null;
  }
View Full Code Here


  @Override
  public IActiveJvm getActiveJvm() {
    if( server.getServerState() == IServer.STATE_STARTED && isConnected ) {
      if( customJvm == null ) {
        IActiveJvm active = KarafJVMFacadeUtility.findJvmForServer(server);
        try {
          customJvm = new KarafActiveJvm(this, active);
        } catch(JvmCoreException jvmce) {
          KarafJMXPlugin.getDefault().getLog().log(new Status(IStatus.ERROR, KarafJMXPlugin.PLUGIN_ID, jvmce.getMessage(), jvmce));
        }
View Full Code Here

TOP

Related Classes of org.jboss.tools.jmx.jvmmonitor.core.IActiveJvm

Copyright © 2018 www.massapicom. 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.