1 package net.sf.quarrel.uml;
2
3 /***
4 * Represents the declaration of an interface in the UML model.
5 */
6 public class UmlInterface
7 extends StructuredElement {
8
9 /***
10 * Creates a new instance with the specified name.
11 *
12 * @param interfaceName the name of the interface.
13 */
14 public UmlInterface(String interfaceName) {
15 super(interfaceName);
16 }
17
18 }