/** A link in a class description: {@link path.to.ReferencedClass} or here: {@link ReferencedClass#draw}. Or a link to a method in the current class: {@link #draw}. A written url: http://visiblearea.com/visdoc/ and a html link: http://visiblearea.com/visdoc/documentation/ @author Arthur Clemens @version 26 December 2006 @use A link in a field: {@link ReferencedClass#paint}. */ class LinkExample { /** Testing a link to own class: {@link LinkExample}. */ public function LinkExample () { } /** A link in a method description: {@link ReferencedClass#paint}. @use A link in a method field: {@link ReferencedClass#paint} and another one with link label: {@link ReferencedClass#draw link to method draw}, and another reference that does not exist: {@link ReferencedClass#spray}. Example of @linkplain: {@linkplain ReferencedClass#paint}. */ public function draw (inObject:ReferencedClass) : Void {} /** Testing multiple links in method line. */ public function drawnObject (inObject1:ReferencedClass, inObject2:ReferencedClass) : ReferencedClass {} }