blob: e6a271a8dbd401600eadd94fd2d14ff737bc0b49 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 BREDEX GmbH.
* 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:
* BREDEX GmbH - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.jubula.toolkit.gef;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jubula.toolkit.ToolkitInfo;
import org.eclipse.jubula.toolkit.gef.internal.GefToolkitInfo;
/**
* GEF toolkit information
*
* @noextend This class is not intended to be extended by clients.
* @since 4.0
*/
public class GefToolkit {
/** Constructor */
private GefToolkit() {
super();
}
/**
* Returns a new instance of toolkit information. Use this method if you
* want to modify the toolkit by adding tester classes.
*
* @return a toolkit information
* @since 3.2
*/
@NonNull
public static ToolkitInfo createToolkitInformation() {
return new GefToolkitInfo();
}
}