blob: f455dc80cefb23d2ff3b30408394194583ab1fd2 [file] [log] [blame]
package org.eclipse.wst.server.ui.editor;
/**********************************************************************
* Copyright (c) 2003 IBM Corporation and others.
* All rights reserved.   This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
 *
* Contributors:
* IBM - Initial API and implementation
**********************************************************************/
import org.eclipse.wst.server.core.IOrdered;
import org.eclipse.wst.server.core.IServer;
import org.eclipse.wst.server.core.IServerConfiguration;
/**
*
*/
public interface IServerEditorPageSectionFactory extends IOrdered {
/**
*
*/
public String getId();
/**
* Returns true if the given server resource type (given by the
* id) can be opened with this editor. This result is based on
* the result of the types attribute.
*
* @return boolean
*/
public boolean supportsType(String id);
public String getInsertionId();
/**
* Returns true if this editor page section should be visible with the given
* server and configuration combination. This allows (for
* instance) complex configuration pages to only be shown when used
* with non-unittest servers.
*
* <p>If the server or configuration is being opened by itself, the
* other value (server or configuration) will be null.
*/
public boolean shouldCreateSection(IServer server, IServerConfiguration configuration);
/**
* Create the editor page section.
*/
public IServerEditorSection createSection();
}