1 package net.sf.quarrel.uml;
2
3 /***
4 * <p>
5 * Represents a entity in a model. Interfaces, classes, use cases, etc, will be
6 * instances of FileElement.
7 * </p>
8 * <p>
9 * The name of an element is assumed to be unique within a model.
10 * </p>
11 */
12 public interface Element {
13
14 /***
15 * Returns the name for the element.
16 *
17 * @return the name of the element
18 */
19 public String getName();
20
21 }