/* * 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//