Unable to see Java 5 features from Doclet API

The Doclet API was extended in Java 5 for getting information in generics, but I have been unable to get it to work. For example, calling ClassDoc.typeParameters and typeParamTags always returns an empty array.
* @param <X> The X
public class Test<X> {
}And the Doclet is:
import com.sun.javadoc.*;
public class TestDoc extends Doclet {
    public static boolean start(RootDoc root) {
        for (ClassDoc cd : root.classes()) {
            System.out.println();
            System.out.println(cd);
            TypeVariable[] tv = cd.typeParameters();
         if (tv.length == 0) {
          System.out.println("No type parameters");
         } else {
          for (TypeVariable t : tv) {
              System.out.println("tv: " + t);
         ParamTag[] pt = cd.typeParamTags();
         if (pt.length == 0) {
          System.out.println("No type parameter tags");
         } else {
          for (ParamTag t : pt) {
              System.out.println("pt: " + t);
        return true;
}For the Test class, it always prints out:
No type parameters
No type parameter tagsI'm running version 1.5.0_05. Is there some magic flag that needs to get passed? I have been unable to see any evidence that the new Java 5 API does anything at all.

Implementing
     public static LanguageVersion languageVersion() {
          return LanguageVersion.JAVA_1_5;
in my extension doclet solved the problem. Is part of the transition documentation from javadoc 1.2 to javadoc 1.5, but can not easily be found, not even a useful hint link.

Similar Messages

  • When I try to use 'Stacked Column Bar'. with data assigned in the graphs, and want to see it in the 'Preview' mode in Xeclsius, I unable to see the graphs apart from the Axes ans Series Value, the graphs becomes totaly invisible why So ?

    When I try to use 'Stacked Column Bar'. with data assigned in the graphs, and want to see it in the 'Preview' mode in Xeclsius, I unable to see the graphs apart from the Axes ans Series Value, the graphs becomes totally invisible why So ?

    Hi Ranendra,
    For basic understanding of Dashboards and Models you can use standard Templates or samples which ll come along with dashboard designer(Formly Xcelsius) installation.
    For path   File-->Templates(or Samples).
    Under Templates you ll have different categories and for each you ll find the dashboard Templates.
    Regards,
    Venkat P

  • Unable to see R/3 FM from Crystal Reports

    Hi All,
    I have created a Function Module in R/3 (Remote-Enabled) and trying to access from the Crystal reports to design a report. But I am not able to see that function Module under "SAP Tables, Clusters and Functions"-> FN. Is there anything I am missing out on either FM side or Crystal Connectivity? Please help.
    regards
    hemanth

    Hi,
    Thanks you for your respose. I think I am nearing the solution to my issue. As per your response, the input value has a I_ prefix but the problem is how do I create the POP-UP to input the value of the Company Code? It doesnt pop up automatically!!! as it happens in R/3. Please do suggest the solution.
    regards
    Hemanth

  • Unable to see RAW NEF image from Nikon D300 in CS3

    Have Camera Raw Plug-in Version 4.0 in my PS CS3 and am not able to see images from my recently purchased used Nikon D300.  I have no problems seeing the NEF images downloaded from my Nikon D80.  I typically download the images from my camera thru Lightroom 2.4.   Do I need a more recent Camera Raw Plug-in?  I want to make sure I'm still compatible with LR.   Any suggestions will be hellpful.

    Yes, you are outdated with the RAW plug in and probably not able to use the
    correct version that supports your camera.
    You have two options:
    1- upgrade to CS4 and benefit from all other good this has to offer
    2- If you won't or can't upgrade use the DNG route, DNG is a free offered
    (by Adobe) converter. The latest DNG converter will convert your D300 files
    to the open DNG format which will show your RAW (then as DNG but still the
    same quality) files and you will be able to use it in CS3.
    There is lot's of information about in on this page:
    http://www.adobe.com/products/photoshop/cameraraw.html
    Have Camera Raw Plug-in Version 4.0 in my PS CS3 and am not able to see images
    from my recently purchased used Nikon D300. 

  • Unable to see or import jpegs from photo cd

    I am trying to import jpegs from a photo cd prepared by a photo store when having my film processed. The cd is recognised and I can see the folders and the actual jpeg files but cannot view photos or import into iphoto. Is there any way I can access or import these jpegs?
      Mac OS X (10.2.x)  

    Hi, Charlene. You might try copying all the jpegs from the CD into a new folder on your hard drive, and then importing them from that folder into iPhoto. If that's successful, you can then trash the folder containing the copied jpegs, since you'll have them in your iPhoto Library and backed up on the CD.

  • Unable to see the sql serveroutput from shell script

    Hello experts,
    I have a shell script which I am using to call a pl/sql proc.
    This proc writes to dbms_output.
    I would like to capture the dbms_output to a file when calling sqlplus from my shell script.
    Here is the code:
    ===============================
    echo "
    sqlplus apps/$APPS_PWD << ENDOFSQL
    set serveroutput ON
    set feedback off
    set verify off
    set linesize 250
    set pagesize 250
    begin
    jdr_utils.listcustomizations('$i');
    end;
    exit
    ENDOFSQL
    " >> new.log
    ===============================
    What I get in the 'new.log' is given below:
    ===============================
    sqlplus apps/prj08app << ENDOFSQL
    set serveroutput ON
    set feedback off
    set verify off
    set linesize 250
    set pagesize 250
    begin
    jdr_utils.listcustomizations('/oracle/apps/irc/candidateSelfService/webui/VisVacDispPG');
    end;
    exit
    ===============================
    ENDOFSQL
    What I would like to get is the dbms_output given by the procedure.
    Please suggest.
    Thanks,
    Vinod

    Vinod wrote:
    Hello experts,
    I have a shell script which I am using to call a pl/sql proc.
    This proc writes to dbms_output.
    I would like to capture the dbms_output to a file when calling sqlplus from my shell script.
    Here is the code:
    ===============================
    echo "
    sqlplus apps/$APPS_PWD << ENDOFSQL
    set serveroutput ON
    set feedback off
    set verify off
    set linesize 250
    set pagesize 250
    begin
    jdr_utils.listcustomizations('$i');
    end;
    exit
    ENDOFSQL
    " >> new.log
    ===============================
    What I get in the 'new.log' is given below:
    ===============================
    sqlplus apps/prj08app << ENDOFSQL
    set serveroutput ON
    set feedback off
    set verify off
    set linesize 250
    set pagesize 250
    begin
    jdr_utils.listcustomizations('/oracle/apps/irc/candidateSelfService/webui/VisVacDispPG');
    end;
    exit
    ===============================
    ENDOFSQL
    What I would like to get is the dbms_output given by the procedure.
    Please suggest.
    Thanks,
    VinodYou need to realize & understand that EVERY command line command runs in its own separate OS process.
    So the results from DBMS_OUTPUT get sent to Standard Out for the sqlplus process; which is NOT attached to your terminal.
    The bottom line is you can't get there from here.

  • Unable to open java custom form in R12 instance

    Dear friends,
    I am unable to open java custom form from front end.
    Navigation as follows:
    SYSTEM ADMINISTRATOR --> UM_SHIPPING --> ORDERS LOOKUP.
    Can anyone please look into the issue please.
    The error as follows:
    Error page
    you have encountered an unexpected error. please contact the system administrator for assistance.
    Thanks,

    I am unable to open java custom form from front end.
    Navigation as follows:
    SYSTEM ADMINISTRATOR --> UM_SHIPPING --> ORDERS LOOKUP.Was this working before? If yes, any changes been done recently?
    Did you follow the steps in (What Setup is Required to Create Custom JSP Pages to Run on the Ebusiness Suite 11i and R12+? [ID 884200.1])?
    Can anyone please look into the issue please.
    The error as follows:
    Error page
    you have encountered an unexpected error. please contact the system administrator for assistance.Please check Apache log files for details about the error. Please also check if any errors are reported in the database log file.
    Thanks,
    Hussein

  • Unable to see free/busy information

    Hi,
    Exchange 2010 and Outlook 2010
    Multiple Sites
    Multiple DAGS
    About 20 000 users
    All users are working fine except for 2 so far with regards to Autodiscover
    Symptom:
    They are unable to see free/busy information from all other users.
    AUTODISCOVER GET SETTINGS BEGIN
    Enabled login on their Outlook and found the following:
    Local autodiscover for domain.com Failed (0x8004010F)
    AUTODISCOVER GET SETTINGS BEGIN
     SMTP=[email protected]
    AutoDiscover PreferLocalXML is ON.
    Local autodiscover for Westernunion.com starting
    Local autodiscover for domain.com Failed (0x8004010F)
    AutoDiscover Warning: ExcludeScpLookup is ON.
    AutoDiscover Warning: ExcludeHttpsAutoDiscoverDomain is ON.
    AutoDiscover Warning: ExcludeHttpsAutoDiscoverDomain is ON.
    AutoDiscover Warning: ExcludeHttpsAutoDiscoverDomain is ON.
    AutoDiscover Warning: ExcludeHttpRedirect is ON.
    AutoDiscover Warning: ExcludeSrvRecord is ON.
    AUTODISCOVER GET SETTINGS END
    Any ideas,

    what the heck is this in there for?
    AutoDiscover PreferLocalXML is ON
    Between that that and all of the other settings I see, there is no chance that AutoD will work for them....
    Cheers,
    Rhoderick
    Microsoft Senior Exchange PFE
    Blog:
    http://blogs.technet.com/rmilne 
    Twitter:   LinkedIn:
      Facebook:
      XING:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • I recently purchased the iphone6 and since it was activated, I can not see any text messages from people with an iphone, on Verizon Messages.  Any advice?

    I recently purchased an iphone 6, and since it was activated on Sunday, I am unable to see any text messages from iphone users, on my Verizon Messages.  Any suggestions?

    Hi Erin,
    The reason I asked is I like using Verizon Messages and found out via a chat on your website that with iMessaging, you can't see those messages on Verizon Messages.  This phone is for a teen ager so I want to make sure all of the fun things about an iPhone are still intact if I turn off iMessage.  r do you know of an Apple product that works the same way as Verizon Messages?

  • EAM: Unable To See All Construction Estimate Lines.

    I have a construction estimate that has almost 156,000 lines uploaded.
    When I navigate to Maintenance Super User > Construction Units > Construction Estimate > Search for the Construction Estimate.
    It only shows Maximum of 1005 records.
    I queried the Construction Estimate through SQL to verify the number of lines it shows all 155,000 records,
    But I am unable to see all the records from Self-Serivce page.
    Any Solution?
    Regards,
    Essmaeel Ali.

    Geraldine
    Try rebuilding the database, see if it helps:
    Hold down the apple and option keys and launch iPhoto. Use the resulting dialogue to rebuild.
    Regards
    TD
    (Racine to Tralee - that's some commute... I hope you don't do it everyday.)

  • Unable to see local variable values when debugging java

    Hi,
    I am using JDev 10.1.2 with java version 1.4.2_04.
    I have been using JDev to debug my java programs. But suddenly from this morning I am unable to see local variable values. I am able to see class and instance variables. This has happened to me before and I had restarted my machine couple of time, to get this sorted. But this time, nothing helps. Going thru the forum I found out that Include Debug information (Project Properties -> Compiler Option) need to be turned ON. It is already turned ON for me.
    I would greatly appreciate if you could let me know how to crack this problem.
    Thanks in advance.

    No. The local variables 'used' to show up during debugging. But erratically it doesn't show up local variable values. I had to restart my machine couple of times whenever this happens, inorder to see the local variable values. But this time even restarting doesn't help.
    Is there any preference setup that need to be turned on/off to see local variables?
    Also I can't step into a static method now. Any idea why this happens?

  • Unable to see "New from Par" option while creating Custom portal layout

    Hi All,
    I am unable to see "New from Par" option in Content Administrator. I am trying to create a custom page Layout for which I am need create layout using new par file. I am not able to see this menu option. Does anyone know from where to enable this option?
    Nitesh

    There is no option like "new from par" from ep 7.
    Create an iview based upon portal components.
    check the below link for creation
    http://help.sap.com/saphelp_nw04/helpdata/en/f5/eb50360e6a11d7b84900047582c9f7/frameset.htm
    Koti Reddy

  • I am unable to see any POP3 or IMAP tab when I set up an account in my iphone 4S. Hence by default all my email accounts become IMAP and the messages are deleted from the server when I delete them from the iphone.

    I am unable to see any POP3 or IMAP tab when I set up an account in my iphone 4S. Hence by default all my email accounts become IMAP and the messages are deleted from the server when I delete them from the iphone.

    ok sorry everyone but i solved it myself but the solution is so nuts i've posted it here to help others who have the same problem.
    to setup a comcast imap account on your iphone:
    go to mail, contacts, etc in settings
    under accts, select add account
    select "other"
    new screen, choose "add mail account"
    now on the new acct screen you must enter your name, email address and password for your GMAIL acct ! (yes i said your gmail acct !, or some other acct with a NON comcast address).
    hit next
    then the acct verifies
    when verified a screen will open with all the acct settings for this acct AND @ the top of the screen are the 2 buttons > imap or POP
    select imap and THEN CHANGE ALL THE ACCOUNT information to the comcast account !
    then hit next and the account will take a couple minutes to verify but it will verify and now you have a comcast imap acct set up on your iphone.  The problem must be that when the iphone sends the initial verify acct info to comcast (if you enter that information first) the comcast server is simply not setup yet to signal the iphone that there is an imap option.

  • Unable to see the pageviewer in a page from pages library in a custom page layout

    <File Url="Inbox.aspx" Type="GhostableInLibrary" Level="Published" Path="myPages\Pages\Inbox.aspx" >
    <AllUsersWebPart WebPartOrder="0" WebPartZoneID="Header" ID="inboxwp1">
    <![CDATA[<WebPart xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/WebPart/v2">
    <Title>Inbox</Title>
    <FrameType>Default</FrameType>
    <Description>Displays another Web page on this Web page. The other Web page is presented in an IFrame.</Description>
    <IsIncluded>true</IsIncluded>
    <ZoneID>wpz</ZoneID>
    <PartOrder>0</PartOrder>
    <FrameState>Normal</FrameState>
    <Height></Height>
    <Width />
    <AllowRemove>true</AllowRemove>
    <AllowZoneChange>true</AllowZoneChange>
    <AllowMinimize>true</AllowMinimize>
    <AllowConnect>true</AllowConnect>
    <AllowEdit>true</AllowEdit>
    <AllowHide>true</AllowHide>
    <IsVisible>true</IsVisible>
    <DetailLink />
    <HelpLink />
    <HelpMode>Modeless</HelpMode>
    <Dir>Default</Dir>
    <PartImageSmall />
    <MissingAssembly>Cannot import this Web Part.</MissingAssembly>
    <PartImageLarge>/_layouts/15/images/mscntvwl.gif</PartImageLarge>
    <IsIncludedFilter />
    <Assembly>Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c</Assembly>
    <TypeName>Microsoft.SharePoint.WebPartPages.PageViewerWebPart</TypeName>
    <ContentLink xmlns="http://schemas.microsoft.com/WebPart/v2/PageViewer">/_layouts/15/AppPages/InboxRedirectPage.aspx</ContentLink>
    <SourceType xmlns="http://schemas.microsoft.com/WebPart/v2/PageViewer">URL</SourceType>
    </WebPart>]]>
    </AllUsersWebPart>
    <AllUsersWebPart WebPartOrder="0" WebPartZoneID="LeftWP" ID="wpLeft">
    <![CDATA[
    <webParts>
    <webPart xmlns="http://schemas.microsoft.com/WebPart/v3">
    <metaData>
    <type name="myWebParts.ProjectLinks.ProjectLinks, m, Version=1.0.0.0, Culture=neutral, PublicKeyToken=52f3214933d771f7" />
    <importErrorMessage>$Resources:core,ImportErrorMessage;</importErrorMessage>
    </metaData>
    <data>
    <properties>
    <property name="Title" type="string">myprojectLinks</property>
    <property name="Description" type="string">My Visual Web Part</property>
    </properties>
    </data>
    </webPart>
    </webParts>
    ]]>
    </AllUsersWebPart>
    <Property Name="ContentTypeId" Value="0x010100C568DB52D9D0A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF390076F7B5D03DD146D699D042E1C5D76EF7" />
    <Property Name="FileLeafRef" Value="Inbox.aspx" />
    <Property Name="Title" Value="Inbox" />
    <Property Name="PublishingPageLayout" Value="~SiteCollection/_catalogs/masterpage/myPageLayout/myPage.aspx, my custom Page Template"/>
    <Property Name="ContentType" Value="myPageCT" />
    <Property Name="_ModerationStatus" Value="3" />
    <Property Name="FileDirRef" Value="Pages" />
    <Property Name="FSObjType" Value="0" />
    </File>
    I have created a custom page layout in my site collec. using VS 2012 and deployed am able to see the page in the pages lib [inbox.aspx].
    Here, I have added a page viewer web part and I want to redirect to another application page, which is already coded [inboxredirect.aspx] in my solution[its another dll - another SP solution which has appln pages and web parts
    etc - ] 
    The issue is that, i am unable to see the page viewer web part when the page is displayed. inbox.aspx is a page which is created once my custompagelayouts solution is deployed and when i navigate to this page, i am stuck . i am getting
    the  " access denied " message is displayed.  
    can anyone help why this  error is displayed?
    in my inboxredirect.aspx page i am inherting from unsecuredlayoutspagebase class, so  i dont think , access denied message should come.
    using System;
    using System.Configuration;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.WebControls;
    namespace myproj.Layouts.AppPages
    public partial class InboxRedirectPage : UnsecuredLayoutsPageBase
    string projectName = string.Empty;
    protected void Page_Load(object sender, EventArgs e)
    string siteUrl = SPContext.Current.Web.Url;
    using (SPSite site = new SPSite(siteUrl))
    using (SPWeb web = site.OpenWeb())
    string urlProjectName =Request.UrlReferrer.ToString();
    projectName = urlProjectName.Split('/')[5];
    //end
    SPUser user = web.CurrentUser;
    if (user != null)
    above is my appln page to which i am redirecting.

    Solved it myself guys... (Well the major part)
    Got help from here...
    https://www.nothingbutsharepoint.com/sites/devwiki/articles/pages/blank-open-save-dialog-when-browsing-document-library-from-office-clients.aspx
    and
    http://www.sharepointconfig.com/2011/02/vs2010-list-definition-template-missing-file-dialog-view/
    with some tweaks of my own..
    Still working on it because its showing SharePoint 2010 header... And I need 2013 look...

  • I have elements 12 in Windows 7 but is unable to see mp4 files in the organiser. The sound from the file is there but no image!

    I have elements 12 in Windows 7 but is unable to see mp4 (Canon G16) files in the organiser. The sound from the file is there but no image!
    Other file formats from Canon is no problen. So What to do??
    Roger

    Me again,
    A friend suggested that I do a system restore.
    I did a search for system restore in Windows 7 and got a very intuitive menu.
    I selected an earlier system restore point and executed the restore.
    After the computer restart I reloaded Firefox 5.0 and the Ask.com problem was corrected.
    My friend says this approach may work about 25% of the time to fix this kind of problem. In my case it worked and I am happy.
    Thanks all.
    Richard Ryer

Maybe you are looking for