Files
Brainstorm/Foundation TCV SWT/src/com/foundation/tcv/swt/IControlLocator.java

17 lines
702 B
Java
Raw Normal View History

2014-05-30 10:31:51 -07:00
/*
* Copyright (c) 2003,2009 Declarative Engineering LLC.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Declarative Engineering LLC
* verson 1 which accompanies this distribution, and is available at
* http://declarativeengineering.com/legal/DE_Developer_License_v1.txt
*/
package com.foundation.tcv.swt;
public interface IControlLocator {
/**
* Locates an SWT control given a component number.
* @param componentNumber The view specific component number whose associated SWT control should be located.
* @return The SWT control.
*/
public org.eclipse.swt.widgets.Control getControl(int componentNumber);
}//IControlLocator//