[jboss-cvs] jbosside/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/runtime ...

Robert Stryker rawblem at gmail.com
Thu Nov 9 19:26:26 EST 2006


  User: rawb    
  Date: 06/11/09 19:26:26

  Added:       as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/runtime    
                        IJBossServerLaunchDefaults.java
                        IServerStatePoller.java IJBossServerRuntime.java
  Removed:     as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/runtime    
                        WebtoolsProjectJBossClasspathContainerInitializer.java
  Log:
  Rewrote Core entirley. It's clean and spiffy now. 
  
  Revision  Changes    Path
  1.1      date: 2006/11/10 00:26:26;  author: rawb;  state: Exp;jbosside/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/runtime/IJBossServerLaunchDefaults.java
  
  Index: IJBossServerLaunchDefaults.java
  ===================================================================
  /*
   * JBoss, Home of Professional Open Source
   * Copyright 2006, JBoss Inc., and individual contributors as indicated
   * by the @authors tag. See the copyright.txt in the distribution for a
   * full listing of individual contributors.
   *
   * This is free software; you can redistribute it and/or modify it
   * under the terms of the GNU Lesser General Public License as
   * published by the Free Software Foundation; either version 2.1 of
   * the License, or (at your option) any later version.
   *
   * This software is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   * Lesser General Public License for more details.
   *
   * You should have received a copy of the GNU Lesser General Public
   * License along with this software; if not, write to the Free
   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
   */
  package org.jboss.ide.eclipse.as.core.runtime;
  
  import java.util.List;
  
  import org.eclipse.core.runtime.CoreException;
  import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
  
  public interface IJBossServerLaunchDefaults {
  	public String getStartArgs();
  	public String getStopArgs();
  	public String getVMArgs();
  	public List getRuntimeClasspath(String action);
  	public String getStartJar();
  	public String getShutdownJar();
  	public String getTwiddleJar();
  	public String getStartMainType();
  	public String getStopMainType();
  	public String getTwiddleMainType();
  
  	
  	public void fillDefaults(ILaunchConfigurationWorkingCopy wc) throws CoreException;
  }
  
  
  
  1.1      date: 2006/11/10 00:26:26;  author: rawb;  state: Exp;jbosside/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/runtime/IServerStatePoller.java
  
  Index: IServerStatePoller.java
  ===================================================================
  /**
   * JBoss, a Division of Red Hat
   * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
   * by the @authors tag. See the copyright.txt in the distribution for a
   * full listing of individual contributors.
   *
  * This is free software; you can redistribute it and/or modify it
   * under the terms of the GNU Lesser General Public License as
   * published by the Free Software Foundation; either version 2.1 of
   * the License, or (at your option) any later version.
   *
   * This software is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   * Lesser General Public License for more details.
   *
   * You should have received a copy of the GNU Lesser General Public
   * License along with this software; if not, write to the Free
   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
   */
  package org.jboss.ide.eclipse.as.core.runtime;
  
  import org.eclipse.wst.server.core.IServer;
  import org.eclipse.wst.server.core.IServerAttributes;
  import org.jboss.ide.eclipse.as.core.server.attributes.IServerPollingAttributes;
  
  public interface IServerStatePoller extends IServerPollingAttributes {
  	
  	public static final boolean SERVER_UP = true;
  	public static final boolean SERVER_DOWN = false;
  	
  	public static final int CANCEL = 0;
  	public static final int TIMEOUT_REACHED = 1;
  	
  	public void beginPolling(IServer server, boolean expectedState); // expected to launch own thread
  	public boolean isComplete();
  	public boolean getState(); 
  	public void cancel(int type);    // cancel the polling
  	public void cleanup();   // clean up any resources / processes. Will ALWAYS be called
  }
  
  
  
  1.1      date: 2006/11/10 00:26:26;  author: rawb;  state: Exp;jbosside/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/runtime/IJBossServerRuntime.java
  
  Index: IJBossServerRuntime.java
  ===================================================================
  /**
   * JBoss, a Division of Red Hat
   * Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
   * by the @authors tag. See the copyright.txt in the distribution for a
   * full listing of individual contributors.
   *
  * This is free software; you can redistribute it and/or modify it
   * under the terms of the GNU Lesser General Public License as
   * published by the Free Software Foundation; either version 2.1 of
   * the License, or (at your option) any later version.
   *
   * This software is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   * Lesser General Public License for more details.
   *
   * You should have received a copy of the GNU Lesser General Public
   * License along with this software; if not, write to the Free
   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
   */
  package org.jboss.ide.eclipse.as.core.runtime;
  
  import org.eclipse.jdt.launching.IVMInstall;
  
  public interface IJBossServerRuntime {
  	public static String PROPERTY_VM_ID = "PROPERTY_VM_ID";
  	public static String PROPERTY_VM_TYPE_ID = "PROPERTY_VM_TYPE_ID";
  	
  	public static String PROPERTY_CONFIGURATION_NAME = "org.jboss.ide.eclipse.as.core.runtime.configurationName";
  
  	public IVMInstall getVM();
  	public String getJBossConfiguration();
  }
  
  
  



More information about the jboss-cvs-commits mailing list