blob: 01d58b461e1bbf58a328ecac2d19f2fbdd5a07bb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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.jdt.internal.debug.ui.jres;
/**
* Used to provide a description for JRE selections in the
* installed JREs block.
*/
public abstract class JREDescriptor {
/**
* Returns a description of the JRE setting.
*
* @return description of the JRE setting
*/
public abstract String getDescription();
}