blob: 5611bed2fe46b8cf4011ff786cfd9933164c05cd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.cheatsheets;
import org.eclipse.ui.internal.cheatsheets.views.CheatSheetViewer;
/**
* A factory for creating a cheat sheet viewer.
* <p>
* This class provides all its functionality via static members.
* It is not intended to be instantiated.
* </p>
*
* @since 3.0
*/
public final class CheatSheetViewerFactory {
/**
* Non-instantiable.
*/
private CheatSheetViewerFactory() {
// do nothing
}
/**
* Creates a new cheat sheet viewer. The viewer does not
* show any cheat sheet initially.
*
* @return a new cheat sheet viewer
*/
public static ICheatSheetViewer createCheatSheetView() {
return new CheatSheetViewer(false);
}
}