@link nested enum elements

Hi,
I'm currently stuck in looking for a way to create links to enum elements of a nested enum "class". My code look similar to this.
package some.package;
public class MyClass {
    public enum MyEnum {
        FIRST;
}Now I want to create a link to the FIRST element of the nested enum MyEnum by writing {@link MyClass.MyEnum#FIRST}. But on generation of the HTML JavaDoc complains about an undefined reference to MyClass.MyEnum#FIRST although some.package.MyClass is mentioned in the imports of the class containing the link tag. If I specify the link using the fully qualified name of the enum (i.e. {@link some.package.MyClass.MyEnum#FIRST}) javadoc recognizes the enum an correctly creates the according link.
Is there any command line switch I have to enable to get this working with the non qualified links, too? Or is this a bug in javadoc?
Regards
P.S.: I'm talking about javadoc 1.5.0_11

I'd also be very interested in an answer to that question. Is this a bug in javadoc or just a question of syntax or settings?
Although not critical (since specifying fully qualified name is a workaround) it's a little annoying...

Similar Messages

  • Wlcompile - nested javac elements not working with ant 1.6.1

    Hi
    I have a problem with Ant 1.6.1 and wlcompile.
    I get the following error: The <wlcompile> type doesn’t support the nested “javac”
    element.
    Heres the error msg I get in debug mode:
    BUILD FAILED
    C:\P2Development\dev\testing\test.xml:3: The <wlcompile> type doesn't support
    the nested "javac" element.
         at org.apache.tools.ant.IntrospectionHelper.throwNotSupported(IntrospectionHelper.java:573)
         at org.apache.tools.ant.IntrospectionHelper.getNestedCreator(IntrospectionHelper.java:624)
         at org.apache.tools.ant.IntrospectionHelper.getElementCreator(IntrospectionHelper.java:691)
         at org.apache.tools.ant.UnknownElement.handleChild(UnknownElement.java:529)
         at org.apache.tools.ant.UnknownElement.handleChildren(UnknownElement.java:320)
         at org.apache.tools.ant.UnknownElement.configure(UnknownElement.java:176)
         at org.apache.tools.ant.UnknownElement.maybeConfigure(UnknownElement.java:152)
         at org.apache.tools.ant.Task.perform(Task.java:363)
         at org.apache.tools.ant.Target.execute(Target.java:301)
         at org.apache.tools.ant.Target.performTasks(Target.java:328)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1215)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1063)
         at org.apache.tools.ant.Main.runBuild(Main.java:632)
         at org.apache.tools.ant.Main.startAnt(Main.java:183)
         at org.apache.tools.ant.launch.Launcher.run(Launcher.java:197)
         at org.apache.tools.ant.launch.Launcher.main(Launcher.java:56)
    I’m using windows 2000. I’ve tried with weblogic.jar from Weblogic Server 8.1
    SP1 and SP2. I’ve tried with JDK 1.4.1_02 and 1.4.2_04. If I’m using Ant 1.5.3
    then everything works perfectly.
    I’ve tried to remove the WLS included Ant version to avoid conflicts with Ant
    1.6.1 and Ant 1.5.3 (that comes with Weblogic server). I’ve tried to uninstall
    Weblogic Server and just keep weblogic.jar, but I still get the same error. I’ve
    tried to put weblogic.jar on the classpath, still not working. I’ve tried to remove
    all jar files from $ANT_HOME/lib except those jar files needed to run my test
    project - ant.jar and ant-launcher.jar, but still doesn’t work. If I change $ANT_HOME
    to Ant 1.5.3 and run Ant 1.5.3 then everything works. So it seems to have something
    to do with Ant 1.6.1.
    Here’s my example code:
    <project name="wlcompile_test" default="test" basedir=".">
         <target name="test" depends="init">
    <wlcompile srcdir="${src.dir}" destdir="${build.dir}">
    <javac debug="${build.debuginfo}" debuglevel="${build.debuglevel}"
    nowarn="${build.nowarn}" deprecation="${build.deprecated}" source="${build.source.version}"/>
    </wlcompile>
         </target>
    <target name="clean" depends="init">
    <delete dir="${build.dir}"/>
    </target>
    <target name="init">
    <taskdef name="wlcompile" classname="weblogic.ant.taskdefs.build.WLCompileTask"
    classpath="C:\P2Development\weblogic.jar"/>
    <property name="src.dir" value="src"/>
    <property name="build.dir" value="classes"/>
    <property name="build.compiler" value="modern"/>
    <property name="build.compiler.pedantic" value="true"/>
    <property name="build.debuginfo" value="true"/>
    <property name="build.debuglevel" value="lines,vars,source"/>
    <property name="build.deprecated" value="false"/>
    <property name="build.nowarn" value="off"/>
    <property name="build.source.version" value="1.4"/>
    <mkdir dir="${build.dir}"/>
    </target>
    </project>
    And I try to run “ant test”
    It doesn’t work with Ant 1.6.1 and weblogic.jar from WLS 8.1 SP1 and SP2. But
    it works perfectly if I change to Ant 1.5.3.
    Here’s a link to the Ant wlcompile task documentation from BEA:
    http://e-docs.bea.com/wls/docs81/programming/environment.html#1098348
    Regards,
    Tobias Wallter

    Yes, this one is fixed in 8.1 SP3. If you need a patch before then,
    contact [email protected] and reference CR136493.
    -- Rob
    Tobias Wallter wrote:
    Hi
    I have a problem with Ant 1.6.1 and wlcompile.
    I get the following error: The <wlcompile> type doesn?t support the nested ?javac?
    element.
    Heres the error msg I get in debug mode:
    BUILD FAILED
    C:\P2Development\dev\testing\test.xml:3: The <wlcompile> type doesn't support
    the nested "javac" element.
         at org.apache.tools.ant.IntrospectionHelper.throwNotSupported(IntrospectionHelper.java:573)
         at org.apache.tools.ant.IntrospectionHelper.getNestedCreator(IntrospectionHelper.java:624)
         at org.apache.tools.ant.IntrospectionHelper.getElementCreator(IntrospectionHelper.java:691)
         at org.apache.tools.ant.UnknownElement.handleChild(UnknownElement.java:529)
         at org.apache.tools.ant.UnknownElement.handleChildren(UnknownElement.java:320)
         at org.apache.tools.ant.UnknownElement.configure(UnknownElement.java:176)
         at org.apache.tools.ant.UnknownElement.maybeConfigure(UnknownElement.java:152)
         at org.apache.tools.ant.Task.perform(Task.java:363)
         at org.apache.tools.ant.Target.execute(Target.java:301)
         at org.apache.tools.ant.Target.performTasks(Target.java:328)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1215)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1063)
         at org.apache.tools.ant.Main.runBuild(Main.java:632)
         at org.apache.tools.ant.Main.startAnt(Main.java:183)
         at org.apache.tools.ant.launch.Launcher.run(Launcher.java:197)
         at org.apache.tools.ant.launch.Launcher.main(Launcher.java:56)
    I?m using windows 2000. I?ve tried with weblogic.jar from Weblogic Server 8.1
    SP1 and SP2. I?ve tried with JDK 1.4.1_02 and 1.4.2_04. If I?m using Ant 1.5.3
    then everything works perfectly.
    I?ve tried to remove the WLS included Ant version to avoid conflicts with Ant
    1.6.1 and Ant 1.5.3 (that comes with Weblogic server). I?ve tried to uninstall
    Weblogic Server and just keep weblogic.jar, but I still get the same error. I?ve
    tried to put weblogic.jar on the classpath, still not working. I?ve tried to remove
    all jar files from $ANT_HOME/lib except those jar files needed to run my test
    project - ant.jar and ant-launcher.jar, but still doesn?t work. If I change $ANT_HOME
    to Ant 1.5.3 and run Ant 1.5.3 then everything works. So it seems to have something
    to do with Ant 1.6.1.
    Here?s my example code:
    <project name="wlcompile_test" default="test" basedir=".">
         <target name="test" depends="init">
    <wlcompile srcdir="${src.dir}" destdir="${build.dir}">
    <javac debug="${build.debuginfo}" debuglevel="${build.debuglevel}"
    nowarn="${build.nowarn}" deprecation="${build.deprecated}" source="${build.source.version}"/>
    </wlcompile>
         </target>
    <target name="clean" depends="init">
    <delete dir="${build.dir}"/>
    </target>
    <target name="init">
    <taskdef name="wlcompile" classname="weblogic.ant.taskdefs.build.WLCompileTask"
    classpath="C:\P2Development\weblogic.jar"/>
    <property name="src.dir" value="src"/>
    <property name="build.dir" value="classes"/>
    <property name="build.compiler" value="modern"/>
    <property name="build.compiler.pedantic" value="true"/>
    <property name="build.debuginfo" value="true"/>
    <property name="build.debuglevel" value="lines,vars,source"/>
    <property name="build.deprecated" value="false"/>
    <property name="build.nowarn" value="off"/>
    <property name="build.source.version" value="1.4"/>
    <mkdir dir="${build.dir}"/>
    </target>
    </project>
    And I try to run ?ant test?
    It doesn?t work with Ant 1.6.1 and weblogic.jar from WLS 8.1 SP1 and SP2. But
    it works perfectly if I change to Ant 1.5.3.
    Here?s a link to the Ant wlcompile task documentation from BEA:
    http://e-docs.bea.com/wls/docs81/programming/environment.html#1098348
    Regards,
    Tobias Wallter

  • How to hide the URL path on click of an link to URL element,from user

    Hi All,
          I have an link to URL element, on click of the link it opens the specified url in a new window. But in new window the user is able to see the entire URL path. I want to hide this path from the user. Can any one please suggest me how to do it.
    Regards,
    lakshmi.

    hi,
    just check this help
    http://help.sap.com/saphelp_nwce10/helpdata/en/f7/f289c67c759a41b570890c62a03519/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/7d/fdc99ab37a8d42892e0d39bbd23be8/frameset.htm
    Link to URL Question

  • In Muse can you link to an element on another page?

    I was hoping that there was a way to link to an "element" (Not a page!) located on anther page either through Muse natively or by a script.  I'm not a coder or I wouldn't be using Muse.  I know you can link to other pages but I don't know about elements of other pages, specifically a "Lightbox" pop-up.
    I have a pop-up on a secondary page, lets say page 2, that I would like to also pop-up on anther page, lets say page 1, when clicked from page 1 but I don't want to have to put this Lightbox pop-up in two (both) locations because I actually have a couple hundred of these.
    Any suggestions would be greatly appreciated.
    Thanks,
    Ryan.

    If you want the pop up on multiple pages you will need to put it on multiple pages. Or you could add the link to the pop up as well as the pop up itself to a template and create the pages that you want that pop up using that template. Another one you can try is to have your pop up on a page all by itself with no template or other content and then add the page to any other page using an iFrame.

  • Where can I find the download link for Photoshop Elements 6 for Macintosh?

    Hard disk crashed, need to reinstall all software including Photoshop Elements 6 for Mac.  The download link has been removed from Adobe site and support is saying I have to purchase a new license.  I already have a licensed version of this product and this version is sufficient for my needs.  Where can I find the download link? 

    Hi jsachen
    I don't think Download Link for Photoshop Elements 6 is available.
    The download links are available from Photoshop Elements 7
    Download Photoshop Elements products | 9, 8, 7

  • Fx:application doesn't support the nested "resources" element

    All
    I am trying to use the ant tasks to package up javafx as per this document https://blogs.oracle.com/talkingjavadeployment/entry/native_packaging_for_javafx
    When running it with the following target
    <fx:deploy  nativeBundles="all"  outdir="${dist.dir}" outfile="${application.title}">
                   <fx:application name="${application.title}" mainClass="${main.class.name}">
                        <fx:resources>
                             <fx:fileset dir="${basedir}/${dist.dir}" includes="BrickBreaker.jar" />
                        </fx:resources>
                        <info title="${application.title}" vendor="${application.jnlp.vendor.name}" />
                   </fx:application>
              </fx:deploy>I am getting fx:application doesn't support the nested "resources" element.

    Apologies fixed by moving it out of fx:application

  • I have purchased a different computer and I need the link to download elements 12 on it. I feel like I have tried everything.... HELP!

    I have purchased a different computer and I need the link to download elements 12 on it. I feel like I have tried everything.... HELP!

    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Linking Files to Elements

    Does anyone know how or if Adobe Acrobat 3D Version 8 can link files to an element in the 3D drawing ? I can add in a link but cannot tie it to an element so that the link follows the element when the 3D PDF is rotated.
    Thank,
    Vinnie

    I second this question.

  • Why enum elements cant be made comparable?

    Is there some special reason or I'm missing something here? Does it mean that the only way to sort a list of enum elements using Collections is by using Comparator class?

    javiator wrote:
    Is there some special reason or I'm missing something here? Does it mean that the only way to sort a list of enum elements using Collections is by using Comparator class?Enums are comparable. You can however not override the method. From the Enum class:
    public final int compareTo(E o)
    Compares this enum with the specified object for order. Returns a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object. Enum constants are only comparable to other enum constants of the same enum type. The natural order implemented by this method is the order in which the constants are declared.

  • Link between Cost element GL Account and WBS element.

    Hi,
    I want to get the List of all dollars sitting on the GL account  attached to the selected WBS element.
    For this, Any one please suggest me the table where i can get the link between the WBS element and GL account.
    or
    Table for link between the Cost element and GL account
    and Table for link between the Cost element and WBS element.
    Thanks,
    Suresh.

    Hi,
    1. There is no link between cost element and WBS
    2. Link between cost element and G/L account is one-to-one. This means, that if it's a primary cost element it has the same code as the G/L account. If it's a secondary element, no link exists.
    3. The table where you can see the postings on your WBS is COEP. There you will find the cost element, WBS, amounts, etc.
    Regards,
    Eli

  • Where is the download link for premiere elements 10 and previous versions?

    Where is the download link for premiere elements 10 and previous versions?
    Also the search program doesn't find previous version downloads.
    Chat is completely busy and won't let me in.
    And I am not paying $39 for what is an Adobe issue.
    FAIL!
    Anyone know where I might find it?

    A.T. Romano wrote:
    ProDesignTools offers these downloads for the Adobe tryouts of older Photoshop Elements and Premiere Elements versions
    What I've always found strange though is that the downloads themselves come from Adobe's servers. Just seems weird that Adobe themselves won't provide the links!
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Where is the link for Photoshop Elements 10 ?

    Where is the link for Photoshop Elements 10 ?

    Try http://prodesigntools.com/photoshop-elements-10-direct-download-links-pse-premiere-pre.htm l
    Follow the instructions carefully otherwise the links will not work.

  • Nest AP element in a div using relative positioning

    I am trying to place text links directly over an image, and
    have both of them inside of a div using DW's default oneColElsCtr
    style. My current site, www.blueapplestudio.com, shows what I am
    trying to do (note the white text inks over the blue bar in the
    background,) but is achieving it by using a bunch of images that
    have been cut up and tables.
    I think I want to make an AP element with the whole
    background image, and then nest an AP element inside of that with
    the text links. This works great until I try to take that whole
    thing and nest it in the oneColElsCtr div.
    Is this even the correct approach? Any help is appreciated.
    -Adam

    >I am trying to place text links directly over an image
    That's a poor technique, as your alignment will depend on a)
    the way the
    browser chooses to render the text, and b) the visitor's
    setting for text
    size display in their browser.
    > Is this even the correct approach?
    No, I don't think so.
    See Thierry's site for an interesting method -
    http://www.tjkdesign.com/articles/how-to_use_sprites_with_my_Image_Replacement_technique.a sp
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "adam@blueapplestudio" <[email protected]>
    wrote in message
    news:fps3kl$ap1$[email protected]..
    >I am trying to place text links directly over an image,
    and have both of
    >them
    > inside of a div using DW's default oneColElsCtr style.
    My current site,
    > www.blueapplestudio.com, shows what I am trying to do
    (note the white text
    > inks
    > over the blue bar in the background,) but is achieving
    it by using a bunch
    > of
    > images that have been cut up and tables.
    >
    > I think I want to make an AP element with the whole
    background image, and
    > then
    > nest an AP element inside of that with the text links.
    This works great
    > until
    > I try to take that whole thing and nest it in the
    oneColElsCtr div.
    >
    > Is this even the correct approach? Any help is
    appreciated.
    >
    > -Adam
    >
    >
    >

  • Creating link on report elements to get more info

    Hello,
    I have created a data model in BI publisher which integrates two data models one from BI Answser (a query ) and One from source data (a table)
    I have linked an element on the BI Answer data model to the corresponding lement in the source table. to get more information on that data element.
    I want to be able to create a report and click on that data element and get detail information about it. Do you know who I can do this?
    Thanks

    Could be a link to a large PDF that is taking a long time to download. They show up as blank, black windows while downloading, usually with a progress bar.

  • URL link in data element documentation

    Is it possible to create a url link within the documentation of a data element to allow the user to launch the web browser and navigate directly to a specified webpage?
    Regards
    Mark Briggs

    Hello,
    I am not sure but you can try this out. Go to se38 and documentation for a test program. Click on Goto and then Change editor. write a text that you want to give a link to. Make its paragraph format as SAPfind Reference. Select the text goto insert link. It will pop you up with a box. give the name of your program but how to link it is another mystery.
    Try these function modules.
    IWB_HTML_HELP_OBJECT_SHOW
    IWB_HTML_HELP_EXTENDED_HELP
    and see this program BCALV_GRID_F4_HELP may be of some help.
    REgards,
    SHekhar Kulkarni

Maybe you are looking for

  • Automatic PO with versioning

    Hello all,             I want to create a PO and its GR automatically at time of invoice receipt.             The problem is that we have activated versioning in our system.             My question is: Is there a way to create a PO automatically in t

  • MacBook Pro 13

    I have a MacBook Pro, mid-2009, with a dead CD/DVD drive. Should I replace it or buy an external drive, in order to use CDs ana DVDs?

  • I'm trying to reset my password on the iPad and apple says it has sent me an email, but I don't receive it, even though the address is good.

    I somehow seem to have changed the Apple id password on my iPad and don't know what it is.  When I try to reset it, I'm given the option of having Apple get in touch with me by email.  I click on this choice and Apple says the email has been sent - b

  • Java basic icons

    Hi, Just wondered how to utilise the icons built-in in java? such as open files or save files. thankx heaps

  • Aperture 3 and Capture NX 2

    I'm evaluating both trial versions of Aperture 3 and Nikon's Capture NX 2. I shoot with a Nikon D90, and I'm trying to develop a consistent workflow which might use the best features of both Aperture 3 and Capture NX 2. I also tend to shoot a lot of