|
Lines 1-5
Link Here
|
| 1 |
/******************************************************************************* |
1 |
/******************************************************************************* |
| 2 |
* Copyright (c) 2004, 2008 IBM Corporation and others. |
2 |
* Copyright (c) 2004, 2009 IBM Corporation and others. |
| 3 |
* All rights reserved. This program and the accompanying materials |
3 |
* All rights reserved. This program and the accompanying materials |
| 4 |
* are made available under the terms of the Eclipse Public License v1.0 |
4 |
* are made available under the terms of the Eclipse Public License v1.0 |
| 5 |
* which accompanies this distribution, and is available at |
5 |
* which accompanies this distribution, and is available at |
|
Lines 11-16
Link Here
|
| 11 |
package org.eclipse.wst.server.core; |
11 |
package org.eclipse.wst.server.core; |
| 12 |
|
12 |
|
| 13 |
import java.beans.PropertyChangeListener; |
13 |
import java.beans.PropertyChangeListener; |
|
|
14 |
import java.util.List; |
| 15 |
import java.util.Map; |
| 16 |
|
| 14 |
import org.eclipse.core.resources.IFolder; |
17 |
import org.eclipse.core.resources.IFolder; |
| 15 |
import org.eclipse.core.runtime.CoreException; |
18 |
import org.eclipse.core.runtime.CoreException; |
| 16 |
import org.eclipse.core.runtime.IProgressMonitor; |
19 |
import org.eclipse.core.runtime.IProgressMonitor; |
|
Lines 226-231
Link Here
|
| 226 |
public void setRuntime(IRuntime runtime); |
229 |
public void setRuntime(IRuntime runtime); |
| 227 |
|
230 |
|
| 228 |
/** |
231 |
/** |
|
|
232 |
* Set the server attribute value that is stored in the server working copy. |
| 233 |
* @param attributeName name of the attribute that needs to be modified. |
| 234 |
* @param value the new value of the given attribute. |
| 235 |
*/ |
| 236 |
public void setAttribute(String attributeName, int value); |
| 237 |
|
| 238 |
/** |
| 239 |
* Set the server attribute value that is stored in the server working copy. |
| 240 |
* @param attributeName name of the attribute that needs to be modified. |
| 241 |
* @param value the new value of the given attribute. |
| 242 |
*/ |
| 243 |
public void setAttribute(String attributeName, boolean value); |
| 244 |
|
| 245 |
/** |
| 246 |
* Set the server attribute value that is stored in the server working copy. |
| 247 |
* @param attributeName name of the attribute that needs to be modified. |
| 248 |
* @param value the new value of the given attribute. |
| 249 |
*/ |
| 250 |
public void setAttribute(String attributeName, String value); |
| 251 |
|
| 252 |
/** |
| 253 |
* Set the server attribute value that is stored in the server working copy. |
| 254 |
* @param attributeName name of the attribute that needs to be modified. |
| 255 |
* @param value the new value of the given attribute. |
| 256 |
*/ |
| 257 |
public void setAttribute(String attributeName, List<String> value); |
| 258 |
|
| 259 |
/** |
| 260 |
* Set the server attribute value that is stored in the server working copy. |
| 261 |
* @param attributeName name of the attribute that needs to be modified. |
| 262 |
* @param value the new value of the given attribute. |
| 263 |
*/ |
| 264 |
public void setAttribute(String attributeName, Map value); |
| 265 |
|
| 266 |
/** |
| 229 |
* Changes the host for the server. |
267 |
* Changes the host for the server. |
| 230 |
* The format of the host can be either a qualified or unqualified hostname, |
268 |
* The format of the host can be either a qualified or unqualified hostname, |
| 231 |
* or an IP address and must conform to RFC 2732. |
269 |
* or an IP address and must conform to RFC 2732. |