org.openide.src
Interface JavaDocTag.See

All Superinterfaces:
JavaDocTag
Enclosing class:
JavaDocTag

public static interface JavaDocTag.See
extends JavaDocTag

Represents a see also documentation tag.


Inner 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 December 12 2001.  |  Portions Copyright 1997-2001 Sun Microsystems, Inc. All rights reserved.