blob: 3a5db863c941645aa35942615979a26a89b934bc [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.uddi.actions;
import org.eclipse.wst.ws.internal.explorer.platform.constants.*;
import org.eclipse.wst.ws.internal.explorer.platform.datamodel.*;
import org.eclipse.wst.ws.internal.explorer.platform.perspective.*;
public class ClearNavigatorFolderNodeAction extends ClearNavigatorNodeAction
{
public ClearNavigatorFolderNodeAction(Controller controller)
{
super(controller);
}
// uddi/actions/ClearNavigatorFolderNodeAction.jsp?nodeId=...
public static String getActionLink(int nodeId)
{
StringBuffer actionLink = new StringBuffer("uddi/actions/ClearNavigatorFolderNodeActionJSP.jsp?");
actionLink.append(ActionInputs.NODEID).append('=').append(nodeId);
return actionLink.toString();
}
public final boolean run()
{
int nodeId = Integer.parseInt((String)propertyTable_.get(ActionInputs.NODEID));
if (!isStaleNode(nodeId))
{
Node node = nodeManager_.getNode(nodeId);
TreeElement element = node.getTreeElement();
element.disconnectRel(element.getPropertyAsString(ModelConstants.REL_CHILDREN));
}
return false;
}
}