/******************************************************************************* * Copyright (c) 2010, 2012 IBM Corporation, Gerhardt Informatics Kft. 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 * RWTH Aachen University, Germany - initial API and implementation * Gerhardt Informatics Kft. - GEFGWT port *******************************************************************************/ package org.eclipse.draw2d; /** * Interface to stereotype those figures that contain a ScrollPane with a nested * Viewport. * * @author Philip Ritzkopf * @author Alexander Nyssen * * @since 3.6 */ public interface IScrollableFigure extends IFigure { /** * Provides access to this figure's nested ScrollPane. * * @return the ScrollPane contained within this figure */ ScrollPane getScrollPane(); }