blob: 3b50c7e1dc3b283846c5e7bda2feb099c951cb49 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Angelo Zerr 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:
* Angelo Zerr <angelo.zerr@gmail.com> - initial API and implementation
*******************************************************************************/
package org.eclipse.e4.tools.orion.editor.swt;
import org.eclipse.swt.SWT;
/**
* Web Browser type.
*
*/
public enum WebBrowserType {
Mozilla(SWT.MOZILLA), WebKit(SWT.WEBKIT), Default(SWT.NONE);
private final int style;
private WebBrowserType(int style) {
this.style = style;
}
public int getStyle() {
return style;
}
public String getName() {
return name();
}
public static WebBrowserType getWebBrowserType(String name) {
for (WebBrowserType browserType : values()) {
if (browserType.getName().equals(name)) {
return browserType;
}
}
return WebBrowserType.Default;
}
}