/** Testing @see references, see {@link #aFunction a number of @see examples}. */ class com.visiblearea.see.See { function See () { } /** Testing a variety of @see values: 1: a text description 2: an explicit link 3: a written out url that automatically gets converted to a url 4: a link to a method of the current class 5: a link to a method of another class (same package) 6: same method, with label 7: a link to a method of another class in another package 8: the same link, but with package resolved automatically @see "Colin Moock: Essential ActionScript 2.0, p. 100" @see javadoc @see specification @see http://adobe.com/ @see #draw @see ReferencedClass#paint @see ReferencedClass#draw Draw it @see com.visiblearea.util.UtilClass#makeLifeEasy @see UtilClass#makeLifeEasy */ function aFunction () : Void { } function draw (inDrawObject:Object) : Void { } }