站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > NetBeans API Javadoc 5.0.0

JavaDocTag.See (NetBeans Java Hierarchy API) - NetBeans API Javadoc 5.0.0

 

org.openide.src
Interface JavaDocTag.See

All Superinterfaces:
JavaDocTag
Enclosing interface:
JavaDocTag

public static interface JavaDocTag.See
extends JavaDocTag

Represents a see also documentation tag.


Nested Class Summary
 
Nested classes inherited from class org.openide.src.JavaDocTag
JavaDocTag.Param, JavaDocTag.See, JavaDocTag.SerialField, JavaDocTag.Throws
 
Method Summary
 String label()
          Return the label of the see tag.
 String referencedClassName()
          get the class name part of @see, For instance, if the comment is @see String#startsWith(java.lang.String) .
 String referencedMemberName()
          get the name of the member referenced by the prototype part of @see, For instance, if the comment is @see String#startsWith(java.lang.String) .
 
Methods inherited from interface org.openide.src.JavaDocTag
kind, name, text
 

Method Detail

label

public String label()
Return the label of the see tag.


referencedClassName

public String referencedClassName()
get the class name part of @see, For instance, if the comment is @see String#startsWith(java.lang.String) . This function returns String. Returns null if format was not that of java reference. Return empty string if class name was not specified..


referencedMemberName

public String referencedMemberName()
get the name of the member referenced by the prototype part of @see, For instance, if the comment is @see String#startsWith(java.lang.String) . This function returns "startsWith(java.lang.String)" Returns null if format was not that of java reference. Return empty string if member name was not specified..


 

Built on May 3 2007.  |  Portions Copyright 1997-2005 Sun Microsystems, Inc. All rights reserved.