blob: c89e88658c6778021a6f8a8918003827f333c028 [file] [log] [blame]
package org.apache.taverna.biocatalogue.ui;
import java.awt.Component;
/**
* Indicates that the class which implements this interface will focus default
* component (as if the component represented by that class was activated).
*
* @author Sergejs Aleksejevs
*/
public interface HasDefaultFocusCapability
{
public void focusDefaultComponent();
public Component getDefaultComponent();
}