blob: 26fb3ffe9a06c2ff17ba2043ee164bf6e33d1af9 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2004, 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.internet.monitor.ui.internal.provisional;
import org.eclipse.wst.internet.monitor.core.internal.provisional.Request;
import org.eclipse.wst.internet.monitor.ui.internal.MonitorUIPlugin;
/**
* Main class for access to the monitor UI.
* <p>
* This class provides all functionality through static members. It is not intended
* to be instantiated or subclassed.
* </p>
*/
public final class MonitorUICore {
/**
* Cannot create MonitorUICore - use static methods.
*/
private MonitorUICore() {
// can't create
}
/**
* Returns an array of the requests currently being displayed in the TCP/IP
* monitor view.
*
* @return an array of requests
*/
public static Request[] getRequests() {
return MonitorUIPlugin.getInstance().getRequests();
}
}