blob: 48f4dba4ed362ee7ee303a2001ed53e8f26b6a9a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.help;
import java.io.*;
import java.net.*;
import org.eclipse.core.runtime.*;
import org.eclipse.help.internal.*;
import org.eclipse.help.internal.protocols.*;
/**
* This class provides general access to help content contributed to the
* <code>"org.eclipse.help.toc"</code> and
* <code>"org.eclipse.help.contexts"</code> extension points.
* <p>
* This class provides static methods only; it is not intended to be
* instantiated or subclassed.
* </p>
*
* @since 3.0
*/
public final class HelpSystem {
/**
* This class is not intended to be instantiated.
*/
private HelpSystem() {
// do nothing
}
/**
* Computes and returns context information for the given context id.
*
* @param contextId
* the context id
* @return the context, or <code>null</code> if none
*/
public static IContext getContext(String contextId) {
return HelpPlugin.getContextManager().getContext(contextId);
}
/**
* Returns the list of all integrated tables of contents available. Each
* entry corresponds of a different help "book".
*
* @return an array of TOC's
*/
public static IToc[] getTocs() {
return HelpPlugin.getTocManager().getTocs(Platform.getNL());
}
/**
* Returns an open input stream on the contents of the specified help
* resource. The client is responsible for closing the stream when finished.
*
* @param href
* the URL (as a string) of the help resource
* <p>
* Valid href are as described in
* {@link org.eclipse.help.IHelpResource#getHref IHelpResource.getHref}
* </p>
* @return an input stream containing the contents of the help resource, or
* <code>null</code> if the help resource could not be found and
* opened
*/
public static InputStream getHelpContent(String href) {
try {
// URL helpURL = new URL("help:" + href);
URL helpURL = new URL("help", //$NON-NLS-1$
null, -1, href, HelpURLStreamHandler.getDefault());
return helpURL.openStream();
} catch (IOException ioe) {
return null;
}
}
}