blob: bbe34a0f73a4b9934f7f5c14fd7446b92ad2cb3d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 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.ws.internal.explorer.platform.perspective;
import javax.servlet.*;
public abstract class Perspective extends MessageProvider
{
protected Controller controller_;
protected MessageQueue messageQueue_;
public Perspective(String messageBundleFileName,Controller controller)
{
super(messageBundleFileName);
controller_ = controller;
messageQueue_ = new MessageQueue();
}
public MessageQueue getMessageQueue()
{
return messageQueue_;
}
public Controller getController()
{
return controller_;
}
public abstract String getPanesFile();
public abstract String getFramesetsFile();
public abstract String getProcessFramesetsForm();
public abstract String getTreeContentVar();
public abstract String getTreeContentPage();
public abstract String getPropertiesContainerVar();
public abstract String getPropertiesContainerPage();
public abstract String getStatusContentVar();
public abstract String getStatusContentPage();
public abstract String getSwitchPerspectiveFormActionLink(int targetPerspectiveId,boolean forHistory);
public abstract String getPerspectiveContentPage();
public abstract int getPerspectiveId();
// This should only be called after the perspective has been successfully instantiated.
public abstract void initPerspective(ServletContext application);
// Node manager for the navigator/tree content page
public abstract NodeManager getNodeManager();
}