1 /*2 * Project: BeautyJ - Customizable Java Source Code Transformer3 * Class: de.gulden.util.javasource.Typed4 * Version: 1.05 *6 * Date: 2002-10-277 *8 * Note: Contains auto-generated Javadoc comments created by BeautyJ.9 * 10 * This is licensed under the GNU General Public License (GPL)11 * and comes with NO WARRANTY. See file license.txt for details.12 *13 * Author: Jens Gulden14 * Email: beautyj@jensgulden.de15 */16 17 package de.gulden.util.javasource;18 19 import java.util.*;20 21 /**22 * Represents a Java source object that has a type.23 * 24 * @author Jens Gulden25 * @version 1.026 */27 public interface Typed {28 29 // ------------------------------------------------------------------------30 // --- methods ---31 // ------------------------------------------------------------------------32 /**33 * Returns the type.34 */35 public Type getType();36 37 /**38 * Sets the type.39 */40 public void setType(Type t);41 42 } // end Typed43