1 /* 2 * This file is a part of CAST project. 3 * (c) Copyright 2007, AGH University of Science & Technology 4 * https://caribou.iisg.agh.edu.pl/trac/cast 5 * 6 * Licensed under the Eclipse Public License, Version 1.0 (the "License"). 7 * You may not use this file except in compliance with the License. 8 * You may obtain a copy of the License at 9 * http://www.eclipse.org/legal/epl-v10.html 10 */ 11 /* 12 * File: IHasLayoutManager.java 13 * Created: 2007-00-00 14 * Author: klewandowski 15 * $Id: IWithLayoutManager.java 2892 2009-05-22 10:14:10Z apohllo $ 16 */ 17 18 package pl.edu.agh.cast.backward.editor; 19 20 import org.eclipse.draw2d.LayoutManager; 21 22 /** 23 * Interface indicating that implementor uses {@link LayoutManager}. 24 * 25 * @author AGH CAST Team 26 */ 27 public interface IWithLayoutManager { 28 29 /** 30 * Returns current layout manager. 31 * 32 * @return {@link LayoutManager} instance 33 */ 34 LayoutManager getLayoutManager(); 35 36 }