blob: 99457fa3383f2db22413295437118dedad65e90d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 EclipseSource Muenchen 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:
******************************************************************************/
package org.eclipse.emf.emfstore.client.ui.errorreporting;
/**
* Represents the format of a screenshot.
*
* @author emueller
*
*/
public enum ScreenshotFormat {
/**
* JPG format.
*/
JPG("jpg");
private final String type;
/**
* Constructor.
*
* @param type
* the format type
*/
ScreenshotFormat(String type) {
this.type = type;
}
/**
* Returns the format type as a string.
*
* @return the format type as a string
*/
public String getType() {
return type;
}
}