blob: b5fd16ca93994e28e75203b387a332b460e0817a [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.html;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jubula.toolkit.ToolkitInfo;
import org.eclipse.jubula.toolkit.html.internal.HtmlToolkitInfo;
/**
* HTML toolkit information
*
* @noextend This class is not intended to be extended by clients.
* @since 4.0
*/
public class HtmlToolkit {
/** Constructor */
private HtmlToolkit() {
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 4.0
*/
@NonNull
public static ToolkitInfo createToolkitInformation() {
return new HtmlToolkitInfo();
}
}