blob: c2e57a4da10cd63dd79593c454d22f91c1860120 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.wst.server.ui.editor;
import org.eclipse.ui.IEditorInput;
import org.eclipse.wst.server.core.IServerWorkingCopy;
/**
*
*/
public interface IServerEditorPartInput extends IEditorInput {
/**
* Returns the server to be edited.
*
* @return IServerWorkingCopy
*/
public IServerWorkingCopy getServer();
/**
* Returns true if the server is read-only.
*
* @return boolean
*/
public boolean isServerReadOnly();
/**
* Gets the command manager. The editor is only responsible for creating an
* ICommand and passing it to the command manager, which actually performs
* the action and updates the server.
*
* @param commandManager ICommandManager
*/
public ICommandManager getServerCommandManager();
}