source: branches/ralph/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/pal/misc/Nameable.java @ 1573

Last change on this file since 1573 was 1573, checked in by rkrimmel, 10 years ago

Now really adding PAL Library

File size: 623 bytes
Line 
1// Nameable.java
2//
3// (c) 1999-2001 PAL Development Core Team
4//
5// This package may be distributed under the
6// terms of the Lesser GNU General Public License (LGPL)
7
8package de.ugoe.cs.autoquest.tasktrees.alignment.pal.misc;
9
10
11/**
12 * interface for classes that can be named.
13 *
14 * @version $Id: Nameable.java,v 1.2 2001/07/13 14:39:13 korbinian Exp $
15 *
16 * @author Alexei Drummond
17 */
18public interface Nameable
19{
20        /**
21         * get the name of this object.
22         *
23         * @return name of this object.
24         */
25        String getName();
26
27        /**
28         * set the name of this object.
29         *
30         * @param name the new name.
31         */
32        void setName(String name);
33}
Note: See TracBrowser for help on using the repository browser.