blob: 45db89bb7649b5360cc60aae60d5ac92090e3557 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 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.wsdl.perspective;
import org.eclipse.wst.ws.internal.explorer.platform.datamodel.*;
import org.eclipse.wst.ws.internal.explorer.platform.perspective.*;
import org.eclipse.wst.ws.internal.explorer.platform.wsdl.actions.*;
public abstract class WSDLNavigatorNode extends Node
{
public WSDLNavigatorNode(TreeElement element,NodeManager nodeManager,int nodeDepth,String imagePath)
{
super(element,nodeManager,nodeDepth,imagePath);
}
// wsdl/actions/ToggleWSDLNavigatorNodeAction.jsp?nodeId=...
public final String getToggleNodeActionHref()
{
return ToggleWSDLNavigatorNodeAction.getActionLink(nodeId_,isOpen_);
}
// wsdl/actions/SelectWSDLNavigatorNodeAction.jsp?nodeId=...
public final String getLinkActionHref()
{
return SelectWSDLNavigatorNodeAction.getActionLink(nodeId_,false);
}
}