![JAR search and dependency download from the Maven repository](/logo.png)
org.eclipse.ui.cheatsheets.CheatSheetViewerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.eclipse.rap.ui.cheatsheets
Show all versions of org.eclipse.rap.ui.cheatsheets
The RAP Widget Toolkit Eclipse UI Cheatsheets
The newest version!
/*******************************************************************************
* Copyright (c) 2004, 2006 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.ui.cheatsheets;
import org.eclipse.ui.internal.cheatsheets.views.CheatSheetViewer;
/**
* A factory for creating a cheat sheet viewer.
*
* This class provides all its functionality via static members.
* It is not intended to be instantiated.
*
*
* @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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy