| Home >> All >> javax >> ide >> model >> java >> [ declaration Javadoc ] |
Source code: javax/ide/model/java/declaration/HasNameD.java
1 /* 2 * @(#)HasNameD.java 3 */ 4 5 package javax.ide.model.java.declaration; 6 7 /** 8 * Common supertype for Mirror elements that have a name. 9 * 10 * @author Andy Yu 11 */ 12 public interface HasNameD 13 extends Declaration 14 { 15 /** 16 * Gets the simple name of this element. 17 * 18 * @return The simple name of this element. 19 */ 20 public String getName(); 21 }