1 /*
2 * Copyright (c) 2001-2003 The XDoclet team
3 * All rights reserved.
4 */
5 package xjavadoc;
6
7 /***
8 * Everything that can have a name implements this interface
9 *
10 * @author Aslak Hellesøy
11 * @created 16. oktober 2002
12 */
13 public interface Named
14 {
15 /***
16 * Get name
17 *
18 * @return name
19 */
20 String getName();
21 }