blob: e96e95bf94e2eb7920478cd2b6e30e443cbc2532 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2008 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:
* Junji MAEDA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.visualization.engines.lowvision.problem;
public interface Recommendation {
public short LOWVISION_RECOMMENDATION = 0;
public short BLIND_RECOMMENDATION = 1;
public short getType();
public String getDescription();
}