blob: 54517e800e83d348ba4ece2a6ac0ba7a836e5709 [file] [log] [blame]
package org.eclipse.jem.util;
/*******************************************************************************
* Copyright (c) 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
*******************************************************************************/
/*
* $$RCSfile: UITester.java,v $$
* $$Revision: 1.2 $$ $$Date: 2005/02/15 23:04:14 $$
*/
/**
* Interface for a UITester. The "classname" attribute on the "uiTester" extension point should implement this class.
*
* @since 1.0.0
*/
public interface UITester {
/**
* Answer if the current context is an UI context.
*
* @return <code>true</code> if an UI context.
*
* @since 1.0.0
*/
public boolean isCurrentContextUI();
}