blob: adee74004b4c5d42ac363c93397502da5fd39c01 [file] [log] [blame]
<%@ page contentType="text/html; charset=UTF-8" import="org.eclipse.wst.ws.internal.explorer.platform.constants.*,
org.eclipse.wst.ws.internal.explorer.platform.actions.*,
org.eclipse.wst.ws.internal.explorer.platform.perspective.*,
org.eclipse.wst.ws.internal.explorer.platform.uddi.constants.*,
org.eclipse.wst.ws.internal.explorer.platform.uddi.actions.*" %>
<jsp:useBean id="controller" class="org.eclipse.wst.ws.internal.explorer.platform.perspective.Controller" scope="session"/>
<%
// Prepare the action.
ToggleNavigatorNodeAction action = new ToggleNavigatorNodeAction(controller);
// Load the parameters for the action from the servlet request.
action.populatePropertyTable(request);
// Run the action and obtain the return code (fail/success).
boolean actionResult = action.execute();
// Determine if the action was added to the history list.
boolean isAddedToHistory = action.isAddedToHistory();
%>
<%@ include file="/actions/ToggleNodeAction.inc" %>