New JavaDoc lookup tool

There is an interesting "master index" to many JavaDoc projects - it lets you drill down to individual packages and classes, so you can get to virtually JavaDoc page, anywhere really quickly.
The page says it is "a comprehensive index to the JavaDoc from 56 Java projects. It links to 1521 packages and 20054 classes from a single page".

Which tool?
What index?
I only know the tool - JawaAPIHelper from http://www.pivotonic.com
it can lookup java doc and It is a killer.

Similar Messages

  • I am trying to use the new iwork beta tools on iCloud.  I currently have 10.8.4 OSX on my iMac and 6.0.5 version of Safari, but when I try to open documents on my iphone in the cloud it tells me my browser isn't supported

    I am trying to use the new iwork beta tools on iCloud.  I currently have 10.8.4 OSX on my iMac and 6.0.5 version of Safari, but when I try to open documents on my iphone in the cloud it tells me my browser isn't supported

    Note that iWork for iCloud is only designed for PCs and Macs > http://support.apple.com/kb/HT5779
    To access to your iWork documents on the iPhone, install Keynote, Numbers or Pages from the App Store

  • IWeb is not working for sending podcasts to iTunes, so I need a new web building tool. What is the closest thing to iWeb that I can use, which also supports podcasts?

    iWeb is not working for sending podcasts to iTunes, so I need a new web building tool. What is the closest thing to iWeb that I can use, which also supports podcasts?

    There's no reason you can't go on using iWeb for this - with iWeb '08 you have to publish to a local folder (i.e. on your Mac) and then upload the contents of the folder (not the folder itself) to your hosting service: and you have to make sure you enter the new URL in the Publish information or the feed won't work properly; this done, an iWeb podcast should work fine.
    Of course there is still the problem that iWeb is not supported and sooner or later a system upgrade may break it. You could look at RapidWeaver: you can make podcasts with that, though the last time I looked into that - which was admittedly some time back - I didn't feel it was ideal for this. There are lots of other podcast creation programs or services around. WordPress is OK but it may be a bit of a steep learning curve: Libsyn is an online service that seems to work reliably. Blogger writes messy feeds but does usually work. Podcast Maker used to work well - I used it myself a few years back - but it rather looks as if it's gone moribund and it may not be reliable with Lion/Mountain Lion, so you would want to check into that.

  • Anyone tried the new Weblogic Scripting Tool (WLST)?

    Has anyone tried using the new WebLogic Scripting Tool (WLST) that was recently
    posted on the dev2dev WebLogic Utilities site: http://dev2dev.bea.com/resourcelibrary/utilitiestools/adminmgmt.jsp
    It looks to be a handy tool that is built upon jython and enables you to easily
    navigate, inspect and manipulate the WebLogic MBean tree on a running server.
    It also has a nice scripting tool which allows you to convert a config.xml file
    into a script that can be run to recreate a domain or specific resources within
    the domain. This is exactly something I have been looking for because we occasionally
    recreate domains or subsets of a domain for testing and POC purposes.
    The utility is fairly well documented and works well for the most part. The only
    issue I have run into so far is that is does not seem to understand JMS Distributed
    Destinations. When I try to convert a config.xml that contains a DD to a script
    it throws a null pointer exception. I have not tried a cluster yet.
    I noticed the utility was authored by someone at BEA. Is there potential that
    BEA will support this in the future if it catches on? Has anyone had experience
    with WLST or jython that would cause you to reccomend (or not) using it?
    Thanks.

    Darryl,
    Thanks for the valuable feedback. My comments are inline.
    Darryl Stoflet wrote:
    As a fairly long time wlshell user who recently started testing wlst there are
    few features I have found lacking in wlst.
    1. For monitoring purposes I am frequently using the -g and -r options to wlshell's
    get command for graphing and repeating respectivelyI haven't looked at -g and -r options in wlshell, but will do so.
    Although there is no graphical monitoring of attributes in wlst, but
    there is certainly some monitoring capability (which will be enhanced
    further in the coming version). Please take a look at the
    monitorAttribute() function.
    wls:/(offline)> help('monitorAttribute')
    Description:
    Monitors the specified attribute every by polling every interval.
    Syntax:
    monitorAttribute(attributeName, interval, monitorFile)
    attributeName = Name of the attribue that you would like to monitor.
    interval = Time (in seconds) to wait before the next fetch
    monitorFile=[optional] File path where the monitored data will be
    written to.
    Example:
    wls:/mydomain/runtime/ServerRuntimes/myserver/ExecuteQueueRuntimes/weblogic.kernel.Default>
    monitorAttribute("ServicedRequestTotalCount",10)
    Press Return to quit monitoring
    Monitoring started for attribute ServicedRequestTotalCount
    wls:/(offline)>
    >
    2. wlshell 2.0 adds the option when connecting to the admin server to also connect
    to all managed servers in that domain. This is a nice feature for monitoring because
    you then have access to all the runtime mbeans in each managed serverYes, this indeed seems to be a very nice feature. We will consider this
    for our next release.
    >
    3. There is not a good way to pass cmd line options(variables) to wlst. In wlshell
    I can send cmd line options via -v. I have tried something similar with wlst using
    -loadProperties but this is a little laborious because I do not necessarily want
    to create a properties file when a passing in only one or two variables. Also
    I find loadProperties lacking somewhat (see 4 below)ok, I just realised that there is indeed a bug in wlst where the command
    line arguments are not being honored. In Jython one can access the
    command line arguments from the sys.argv variable. For example,
    java weblogic.WLST -i foo.py var1 var2 var3
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to Weblogic Server Administration Scripting Shell
    Type help() for help on available commands
    wls:/offline> print sys.argv
    ['foo.py', 'var1', 'var2', 'var3']
    wls:/offline>
    But this isn't working properly, please keep using the loadProperties
    untill this has been fixed.
    >
    4) loadProperties treats all created variables as strings. While this is understandable
    from the perspective that getProperty returns a string, it would be nice if wlst
    was smart enough that when a property is numbers only its an int, otherwise a
    string etc.
    wlshell does this logic/conversion for you which really simplifies calling methods
    that expect the particular datatype. To get around this problem you can create a script file say,
    variables.py which would look like,
    # variables that will be used
    theInterpreter.set('var1',10)
    theInterpreter.set('var2','i am a string')
    java weblogic.WLST variables.py
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to Weblogic Server Administration Scripting Shell
    Type help() for help on available commands
    wls:/(offline)> print var1
    10
    wls:/(offline)> print var2
    'i am a string'
    >
    5. I'd like to be able to send cmd output etc to a file while running within wlst.
    In wlshell its a simple as adding >> filename to the end of the command. In wlst it is not as simple as doing >>, it is more than that. You can
    choose any output stream to direct your output to. In your case you can
    create a FileOutputStream and route the output to this stream for any
    particular command.
    Example,
    # create a file output stream say fos
    from java.io import FileOutputStream
    fos = FileOutputStream("output.txt")
    # save the default output stream to a variable to
    # switch it back
    sys.stdout=fos
    # Now all output for any function will go to output.txt
    ls()
    cd('foo')
    # after done with your functions switch it back
    sys.stdout=origOutput
    This is the right Jython way to do it. This works for all output streams
    , very useful when you embed an interpreter in a servlet and would like
    to display the output via a PrintStream etc.
    >
    >
    All in all wlst is a nice tool. Personally if the above features were added it
    would be much easier to transistion to wlst for good.
    Also I really like the wlst offline tool. Its nice to be able to do the whole
    create and configure domain process with one tool. Will this be supported. Yes indeed. We are working on merging both the tools into one.
    I do
    not want to rely on it too much if it will not work in future weblogic versions.It will be supported in future release of weblogic.
    Thanks,
    -satya
    >
    Thanks,
    Darryl
    "Steve Hess" <[email protected]> wrote:
    Hello,
    I am the BEA Product Manager behind WLST.
    WLST, as it appears today on dev2dev, is an early release version of
    a tool that
    BEA does intend to support as part of our next major release. We decided
    to issue
    early versions of the tool because of the demand for a supported scripting
    solution,
    and to generate feedback from our user community. I encourage you to
    work with
    WLST, and assure you that this tool represents our current direction
    in management
    scripting.
    Also note, this newsgroup can be used to issue questions, concerns and
    feedback
    about WLST. The engineering and PM team will monitor this group and
    respond to
    your questions as quickly as we can. While we will not be able to respond
    to
    every feature request, we really value your suggestions, and will endeavor
    to
    improve the tool in ways that meet your real-world needs.
    Cheers,
    Steve Hess
    Director, WLS PM
    "George Lupanoff" <[email protected]> wrote:
    Has anyone tried using the new WebLogic Scripting Tool (WLST) that was
    recently
    posted on the dev2dev WebLogic Utilities site: http://dev2dev.bea.com/resourcelibrary/utilitiestools/adminmgmt.jsp
    It looks to be a handy tool that is built upon jython and enables you
    to easily
    navigate, inspect and manipulate the WebLogic MBean tree on a running
    server.
    It also has a nice scripting tool which allows you to convert a config.xml
    file
    into a script that can be run to recreate a domain or specific resources
    within
    the domain. This is exactly something I have been looking for because
    we occasionally
    recreate domains or subsets of a domain for testing and POC purposes.
    The utility is fairly well documented and works well for the most part.
    The only
    issue I have run into so far is that is does not seem to understandJMS
    Distributed
    Destinations. When I try to convert a config.xml that contains a DDto
    a script
    it throws a null pointer exception. I have not tried a cluster yet.
    I noticed the utility was authored by someone at BEA. Is there potential
    that
    BEA will support this in the future if it catches on? Has anyone had
    experience
    with WLST or jython that would cause you to reccomend (or not) using
    it?
    Thanks.

  • Can not open new blank tab window from file, new tab.In Tools/Options/Tabs ticked open new windo w in new tab?

    Can not open new blank tab window from file, new tab.In Tools/Options/Tabs I have ticked open new window in new tab?

    The Ask Toolbar is probably causing that in the Firefox 3.6.13 version. Disable that extension or un-install it.

  • New Chromatic Aberration tools kills old settings.

    I've just recently found that new chromatic aberration tools kills settings for old chromatic aberration tools.
    Lets say I have a PV2010 photo with adjusted sliders for chromatic aberration reduction and selected defringe "all edges".
    Now I'm importing this photo to LR 4.1.
    Note: I'm not updating process version!
    Photo is automatically updated by Lightroom to new CA controls (note it still PV2010 photo).
    Well, I must say the the results are superb - they are the same as I was achieving with manual sliders, but now with only one click.
    But the problem is - Lightroom says that metadata have been changed, and I am writing back changes to XMP.
    But now XMP contains settings for new CA tools, but settings for old CA tools are LOST.
    So if I want to open this image in ACR 6.6, or send it to someone with older LR version I end up with completely resetted CA settings, because ACR 6.6 does not have new CA tools, and settings for old tools are killed by LR 4.1 - they are just removed from XMP.
    So I am loosing CA removal settings completely when opening image in earlier version of application.
    And I am NOT updating process version!
    Any comments on this?

    Here is screen shot in which you can see that even PV2010 photo has new CA tools and old ones are gone with their settings applied in LR3.
    I have tried to import CR2 files without any settings in the XMP into newly created empty catalog and have same result.
    When I am switching photo to PV2003 or PV2010 only new CA tools are available.
    And saving metadata to file kills old CA settings and writes settings for new tools (even for PV2010 photo) which previous versions does not understand.
    To my opinion this is very serious bug!
    Here is photoshop feedback message created 5 days ago: http://feedback.photoshop.com/photoshop_family/topics/lightroom_new_cromatic_aberration_to ols_kills_old_settings
    Looks like noone cares...
    Can someone at least say do I am the only person having this issue, or you can see this behaviour too.

  • Just updated my photoshop cc and wanted to try out the new focus selection tool but it's not there.  Why isn't it there?

    Just updated my photoshop cc and wanted to try out the new focus selection tool but it's not there.  Why isn't it there?

    Use menu Help>About Photoshop make you have started CC 2014 and have not started CC... Its in menu Select under Color range

  • Confused by the lists shown on new CC desktop tool

    After finally getting the new CC desktop tool installed and running, I see lists on the thing that appear
    to be contradictory. One list shows the tools "Up to date" but the other list shows them to be installed.
    Maybe a couple of screen shots will help show what I'm getting at.
    Shot 1 just shows a partial menu under the APPS menu item, but you will note it shows my  applications
    as up to date. 
    Shot 2 shows; when you scroll down to Find New Apps.
    There you see all the same apps showing to be "INSTALL" [ed]. (Note that both lists are only partial to avoid
    so many screen shots) but the two lists do completely overlap.
    Does any one know for sure what that means?  Are the ones showing "up to date" the old lot, and those
    showing to be installed are all actually new (but the same name) apps...?
    I ask because my updates have been coming one at a time as application was debugger or upgraded
    in some way, now is this a whole slug of the same apps that have to be reinstalled? 
    Now scrolling down to  Find New Apps we see they are all listed as being ready to install.

    As per screenshot the applications show "up to date" are already installed on the machine.
    Hereby, they showed under "Your Apps" section  and those showed under "New Apps" are new applications and yet to be installed.
    You can check all these new applications are CC(Creative Cloud) not same as already installed.
    Creative Cloud version of application is totally different and full version all together. They need to be installed separately.

  • After using "migration assistant" from my old iMac to my new iMac, some tools stick while using Photoshop CS 6 Extended. My current operation system is 10.10 Yosemite. I was wondering if UN installing then RE installing CS 6 might solve the problem. If th

    After using "migration assistant" from my old iMac to my new iMac, some tools stick while using Photoshop CS 6 Extended. My current operation system is 10.10 Yosemite. I was wondering if UN installing then RE installing CS 6 might solve the problem. If this is recommended, I would need complete instructions on doing this. I have there serial number for the product.

    using migration assistant is problematic.
    at this point yes, you should uninstall everything migrated, clean and then reinstall properly using the installation files.
    cleaner:  Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    installation files:
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 |12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.7| 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'.
    window using the Lightroom 3 link to see those 'Important Instructions'.

  • New BI redesign tool

    Hi all,
    I have an DSO in production system containing huge amount of data...
    the DSO contains 0MAT_PLANT but I have a new requirement to report on nav. attributes of 0MATERIAL, which is not in the DSO, and I wonder if the new BI redesign tool can help on adding 0MATERIAL to the DSO and copy the content of 0MAT_PLANT to 0MATERIAL , but I cannot find any documentation about this new feature of BI 7.0.
    Has anyone used it before or has any documentation about?
    Many thanks in advance,
    Elena

    Hello Elena,
    Well the new feature with BI7.0 is Remodelling.
    But even with BW3.x you can add any characteristics to the Cube/ODS without having to delete the data. Remodelling is only more useful when you have to remove some characteristics from the existing setup without deleting the entire data.
    Let me know if you need more info.
    Regards
    Rohit
    Edited by: Rohit Rakhan on Oct 21, 2008 6:51 PM
    Ohh yes, you won't be able to copy the data for 0MAT_PLANT to 0MATERIAL

  • New Speed Change tools

    Can anyone elaborate on the usage of the new speed change tools? I'm having trouble getting the easing to work correctly, and am pretty lost about the envelope/keyframe editing.

    Go here: http://www.rippletraining.com/provideoapps.html
    Then click on the "New Speed Tools" movie.
    -DH

  • Using New LabVIEW Merge Tool LVMerge With Tortoise SVN

    Hi,
    I've just posted a new blog article Using New LabVIEW Merge Tool LVMerge With Tortoise SVN to my blog at ExpressionFlow. Check it out!
    Tomi
    Tomi Maila

    The LV merge tool really does become far more powerful when integrated into SVN than when used manually.  Here's an article on Using LVmerge LabVIEW Merge Tool with TortoiseSVN with all the necessary setup instructions for LabView 8.5 and 8.6.
    Jesse

  • [svn] 1549: New Javadoc package-info file.

    Revision: 1549
    Author: [email protected]
    Date: 2008-05-03 03:53:04 -0700 (Sat, 03 May 2008)
    Log Message:
    New Javadoc package-info file.
    Added Paths:
    blazeds/branches/3.0.x/modules/proxy/src/java/flex/messaging/services/http/package-info.j ava

    Revision: 1549
    Author: [email protected]
    Date: 2008-05-03 03:53:04 -0700 (Sat, 03 May 2008)
    Log Message:
    New Javadoc package-info file.
    Added Paths:
    blazeds/branches/3.0.x/modules/proxy/src/java/flex/messaging/services/http/package-info.j ava

  • While Opening a New Window all Tool Bars and Bookmark Bar Dissapearing

    Dear Mozilla Team,
    I loved the new Firefox 4 it is fast and more space for webpages and many other a lot of good stuff. Congrats and thank you for the hard work. However something weird happening every time I opened a second new window .
    I will try to explain and be clear;
    File --> New Window;
    In the new window;
    - The biggest problem is it seems like there are two Microsoft Windows window within each other. There are two minimize, fullscreen and close icons at the top right corner.
    - Some of the google toolbar icons lost
    - My boomarks toolbar lost
    - My homepage is not loading and there is not attempt to load.
    This is happening every time I try to open 2 new window.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)
    * [[Troubleshooting extensions and themes]]

  • Newbie problem with new objects and tools.

    in chapter 4 of the after effects essential training series from Lynda.com in the section about controlling animation with the pick whip. when he applies the null object the red bar immediately populates (correct usage?) the timeline to the right. when i apply the null object it's hidden to the left, under all the layer info, and i need to drag it out into view.
    ive found that whenever i have a problem, e.g., im using a tool and nothing is happening, it always comes down to this same thing: the layer is not with everything else and i need to drag it out into view.
    not only am i new to mac, but im only marginally literate and a total newb to anything more advanced than iphoto, any advice would be appreciated.

    Rick Gerard wrote:
    I'm not understanding what you are asking.
    If you have a layer in the timeline, a null, and the parenting column is visible you simply click on the pickwhip next to the layer and drag it to the name of the null layer. The Parenting box now says that Layer 1 is connected to Null 1.
    Now, when you move the null, the layer will move.
    i understand what they do and how to set them up.
    my question is more specific, but also applies more generally to other tools and layers. when Ian creates his null layer in the video (as well as other layers ive seen him create) the red bar that represents his null layer immediately appears in the timeline with the begining of the red bar at the left end of the work area. it is fully visible. when i create one the file shows up in the list of layers on the panel to the left of the time line, but it is not visible in the comp window and the red bar is hidden to the left side of the visible timeline to where you have to click its right end and drag it out from behind the panel on the left.
    this has happened with other layers ive created using other tools and before i figured out what to look for it was very frustrating. now, whenever i can't find something, or a tool that im using isnt doing anyhting (besides creating more and more layers) ive learned to look and see if theyre just hidden. it seems like it's probably a setting. but clearly, something is different: he creates a null layer and it appears in the timeline, and mine appear slid to the left.

Maybe you are looking for

  • Firmware upgrade for Westell UltraLine Series3 A90-9100EM15-10 ?

    I'm wanting to check for/download install a firmware upgrade for my Westell UltraLine Series3 A90-9100EM15-10. It's currently running Software Version:     1.02.00.04 Release Date:     Aug 28 2008 I'm hoping there's an upgrade available that fixes th

  • Automatic determination of WBS element in MIGO

    Dear Friends, I have a requirement as below: When we do reservation for a particular WBS element and do goods issue for a different WBS element, system is not giving any error message. We want to configure automatic determination of WBS element in MI

  • Are ref cursors supported in APEX??

    Apex version 3.2 ORacle 10G

  • Defining Business service

    Hi Experts, I am new to SAP XI environment. i have a requirement to move the files from one folder to other folder on a FTP server(UNIX system). As the scenario is very simple, i thought of just developing the Configuration scenario directly i.e, bus

  • Clean install of iTunes???

    Hi I would like to clean install iTunes 7.x over iTunes 8.x. How would i do this? Thanks NBK