Add javadoc comments problem

Hi,
I've download the new Jdev11 base IDE and when trying to add javadoc comments I get one of the following results:
if I start the comment writing the /** just above the method jdev stalls and does not respond anymore right after I press 'enter'
if I try to use the 'add javadoc comments' under the 'source' menu nothing happens.
has anyone else encountered this problem?
thanks
Tomer

thanks... ill try reinstalling the thing.
I should mention that what i meant by base install is the 56MB version they have - the very stripped down version.
I doubt this is a feature they would strip though...

Similar Messages

  • Problem with add Spotlight Comments script.

    Hello,
    I am trying to add Spotlight Comments to some files using Automator. I have made an very simple script in Automator that add Spotlight Comments to the files that I have selected in Finder. I save this script as an app and it work great. I also save the same script but not as an app but as a service. The problem here is that when I run the service it add the same Spotlight Comment two times. For example, if I add "@Webshots" with the app the Spotlight Comments of the files is "@Webshots" but when I do it with the service the Spotlight Comments of the files is "@Webshots" "@Webshots". Can anybody help me with this? I will appreciate it a lot any help that you could give me. Thanks

    I suspect your workflow includes 'get select finder items' as the first action. get rid of it. it's redundant in a service that accepts files and folder in finder. that's why everything happens twice.

  • Visitors to blog unable to "add a comment"

    Any idea how to fix this? My visitors get an error message when they try to add a comment to my blog. Anyone else having this problem, and if so, have you found a solution? Do you think the folks at Apple read these things and are still working to fix MobileMe, or have they just given up? Disaster...

    Problems with comments on MobileMe: the comments don't work
    (Note that iWeb comments only work when publishing to MobileMe.)
    That's a problem a lot of people experience since .Mac changed to MobileMe.
    Please note that you could lose the comments you have now.
    • Make sure you have the latest version of iWeb
    • For most people (about 80%) the issue is solved when they do a "Publish all" instead of a "Publish". Go to File=>Publish all
    • If you're using a personal domain and you had it set up already when MobileMe still was .mac you will have to update it. If you use CNAME change it from web.mac.com to web.me.com. If you use WebForward change web.mac.com/Username to web.me.com/username
    • If you access your site using web.mac.com/username use web.me.com/username instead and the comments should work
    • If they still don't work go to iWeb and uncheck the comments feature from the Inspector, save, publish, re-check the comments box in the Inspector and re-publish
    You could use Haloscan comments even if you're publishing to Mobile: you don't lose your comments, the feature is more stable, you can add them to all the pages not only Blog and Photo pages.

  • Pacman suggestion: add own comment to a package that survives upgrades

    I install and uninstall lots of packages, and once every few months I  clear out all unused explicitly installed stuff. The problem is that for quite a number of packages I forget why I installed it. Usually it is because some script of mine needs it, or to try out something, and the package comment isn't descriptive enough. So I wonder if it would be idea to somehow add one's own comment when installing something, so that a 'pacman -Qi packagename' for example would show it.  The most obvious solution would be editing a pkgbuilds from the repository, but they get overwritten with the next upgrade. And to recompile using ABS only to add a comment doesn't seem right. Has anyone else thought about this?
    Last edited by rwd (2009-11-07 13:54:03)

    tags! that's a good idea too! so i added some basic tag actions:
    #!/bin/bash
    pkgnote_db="pkgnote.db"
    [ -f "${pkgnote_db}" ] || touch "${pkgnote_db}" || exit 1
    view_pkgnote () {
    local pkg="$1"
    grep "^${pkg}: " "${pkgnote_db}"
    kill_pkgnote () {
    local pkg="$1"
    sed -i "/^${pkg}: /d" "${pkgnote_db}"
    edit_pkgnote () {
    local pkg="$1" note
    echo "comments for package \`${pkg}':"
    read note
    grep "^${pkg}: " "${pkgnote_db}" &>/dev/null &&
    sed -i "s/\(^${pkg}: \).*/\1${note}/" "${pkgnote_db}" ||
    echo "${pkg}: ${note}" >> "${pkgnote_db}"
    taga_pkgnote () {
    local tag="$1" pkgs=($2) pkg
    for pkg in "${pkgs[@]}" ; do
    grep "^${pkg}: .*\[\[${tag}\]\]" "${pkgnote_db}" &>/dev/null && continue
    grep "^${pkg}: " "${pkgnote_db}" &>/dev/null &&
    sed -i "s/^${pkg}: .*/& [[${tag}]]/" "${pkgnote_db}" ||
    echo "${pkg}: [[${tag}]]" >> "${pkgnote_db}"
    done
    tagd_pkgnote () {
    local tag="$1"
    sed -i "/^[^[[]*\[\[${tag}\]\][^[[]*$/d;s/ \[\[${tag}\]\]//" "${pkgnote_db}"
    tagl_pkgnote () {
    local tag="$1"
    echo "packages with tag [[$1]]:"
    sed "/\([^:]*\): .*\[\[${tag}\]\].*/!d;s//\1/" "${pkgnote_db}"
    until [ -z "$1" ] ; do
    case "$1" in
    -v|--view) view_pkgnote "$2" ; shift 2 ;;
    -e|--edit) edit_pkgnote "$2" ; shift 2 ;;
    -d|--delete) kill_pkgnote "$2" ; shift 2 ;;
    -t|--tag)
    case "$2" in
    a|add) taga_pkgnote "$3" "$4" ; shift 4 ;;
    d|delete) tagd_pkgnote "$3" ; shift 3 ;;
    l|list) tagl_pkgnote "$3" ; shift 3 ;;
    *) echo "invalid tag action: $2" ; shift 2 ;;
    esac ;;
    *) echo "invalid option: $1" ; shift ;;
    esac
    done
    several examples
    $ ./pkgnote.sh -e pkg1 -e pkg2
    comments for package `pkg1':
    this is package 1 [[project 1]]
    comments for package `pkg2':
    this is package 2
    $ ./pkgnote.sh -v pkg1
    pkg1: this is package 1 [[project 1]]
    $ ./pkgnote.sh -t list 'project 1'
    packages with tag [[project 1]]:
    pkg1
    $ ./pkgnote.sh -t add 'project 1' 'pkg2 pkg3 pkg4'
    $ ./pkgnote.sh -t list 'project 1'
    packages with tag [[project 1]]:
    pkg1
    pkg2
    pkg3
    pkg4
    $ ./pkgnote.sh -t add 'project 2' 'pkg3'
    $ ./pkgnote.sh -t d 'project 1'
    $ ./pkgnote.sh -t list 'project 1'
    packages with tag [[project 1]]:
    $ ./pkgnote.sh -t list 'project 2'
    packages with tag [[project 2]]:
    pkg3
    note: --edit also overwrites tag(s) of the package
            As seen in the example(note 'pkg3'), --tag delete <tag> will not remove the whole packge comment line from db, unless <tag> is the only tag this package has, which should be as expected.
    Still, it's a script that can be used with any kind of short comments...
    Last edited by lolilolicon (2009-11-07 16:06:26)

  • Get javadoc comment for concrete methods

    Hi all,
    How to get javadoc comments to our concrete methods same as default methods.suppose if i generate action class, action method will generate with parameters and for this total java doc comments with method descritption generated whenver i choose yello bulb(at left indent) ---> Add missing java doc.
    So this type of facility i want to add to my own method .How can i do ?

    Hi all,
    How to get javadoc comments to our concrete methods same as default methods.suppose if i generate action class, action method will generate with parameters and for this total java doc comments with method descritption generated whenver i choose yello bulb(at left indent) ---> Add missing java doc.
    So this type of facility i want to add to my own method .How can i do ?

  • Help with add file name problem with Photoshop CS4

    Frustrating problem: Help with add file name problem with Photoshop CS4. What happens is this. When I am in PS CS4 or CS3 and run the following script it runs fine. When I am in Bridge and go to tools/photoshop/batch and run the same script it runs until it wants interaction with preference.rulerunits. How do I get it to quit doing this so I can run in batch mode? Any help is appreciated. HLower
    Script follows:
    // this script is another variation of the script addTimeStamp.js that is installed with PS7
    //Check if a document is open
    if ( documents.length > 0 )
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.INCHES;
    try
    var docRef = activeDocument;
    // Create a text layer at the front
    var myLayerRef = docRef.artLayers.add();
    myLayerRef.kind = LayerKind.TEXT;
    myLayerRef.name = "Filename";
    var myTextRef = myLayerRef.textItem;
    //Set your parameters below this line
    //If you wish to show the file extension, change the n to y in the line below, if not use n.
    var ShowExtension = "n";
    // Insert any text to appear before the filename, such as your name and copyright info between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextBefore = "Lower© ";
    // Insert any text to appear after the filename between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextAfter = " ";
    // Set font size in Points
    myTextRef.size = 10;
    //Set font - use GetFontName.jsx to get exact name
    myTextRef.font = "Arial";
    //Set text colour in RGB values
    var newColor = new SolidColor();
    newColor.rgb.red = 0;
    newColor.rgb.green = 0;
    newColor.rgb.blue = 0;
    myTextRef.color = newColor;
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( 10, 99);
    // Set the Blend Mode of the Text Layer. The name must be in CAPITALS - ie change NORMAL to DIFFERENCE.
    myLayerRef.blendMode = BlendMode.NORMAL;
    // select opacity in percentage
    myLayerRef.opacity = 100;
    // The following code strips the extension and writes tha text layer. fname = file name only
    di=(docRef.name).indexOf(".");
    fname = (docRef.name).substr(0, di);
    //use extension if set
    if ( ShowExtension == "y" )
    fname = docRef.name
    myTextRef.contents = TextBefore + " " + fname + " " + TextAfter;
    catch( e )
    // An error occurred. Restore ruler units, then propagate the error back
    // to the user
    preferences.rulerUnits = originalRulerUnits;
    throw e;
    // Everything went Ok. Restore ruler units
    preferences.rulerUnits = originalRulerUnits;
    else
    alert( "You must have a document open to add the filename!" );

    you might want to try the scripting forum howard:
    http://www.adobeforums.com/webx?13@@.ef7f2cb

  • Is it possible to customize/add the comments on Ratings.. :)

    Hello All,
    This query is about Rating feature again.
    Have changed the configuration by adding:
    1. No of Rating Points from 5 to 10.
    2. Max No of Comments from 3 to 5.
    This was just to experiment whether siuch change is possible. And yes, it does work fine.
    Question:
    Ideally, the no. of rating points is 5 with comments like <i>Excellent</i>, <i>Very Good</i>, <i>Good</i>, <i>Poor</i> and <i>Very Poor</i>.
    <b>Now since ive changed this attribute from 5 to 10, how can I add more commetns like the ones mentioned above</b>?
    Awaiting Reply.
    Thanks and Warm Regards,
    Ritu

    Hello Kirupanand,
    Firstly thank you for your inputs but i think u missed my question.
    I have already changed some configuration in the RatingService but now I want to add more comments in the pop-up which shows Excellent, Good, etc.
    Where is this controlled??
    Awaiitng Reply.
    Thanks and WArm REgards,
    Ritu

  • How do I add a comment to a cell in Numbers for iCloud beta like I can in Numbers for ios???

    I can't be the only person to find it incredibly frustrating that it seems impossible to add a comment to a cell in beta. I use this function a lot on my ipad - is it really not available in beta?? And if not, why not??

    Hey lolitajoon,
    Thanks for the question. You are correct, comments are hidden from all iWork apps when imported to iWork for iCloud beta. Please note that the current release of Numbers for iCloud is a beta version. Therefore, certain features aren’t yet supported.
    Opening iWork files in iWork for iCloud beta
    http://support.apple.com/kb/HT5663
    Features that behave differently after importing your document
    These features behave differently in iWork for iCloud beta. They don't change in the original copy of your iWork for iOS or iWork for Mac document.
    Importing from all iWork apps
    - Comments are hidden.
    Additional information:
    Numbers for iCloud beta: Coming soon in Numbers for iCloud beta
    http://support.apple.com/kb/PH12840
    Thanks,
    Matt M.

  • How to add a comment for each row on the output of a report?

    I would like to add a comment (field) for each row on the output of report? This comment should to be saved as well. Is there a way i can do that?
    Regards,
    Ram

    Hi Dimitri,
    through the instead of trigger functionality i am able to update the view. This is view is based on different views which should be linked to a table (as you suggested) in which comments can be stored. Hower this table is empty and how to link this table with the view now? I face the following challenge.
    View consists the following columns, for example
    select name, sex, age from test_view
    name sex age
    John M 20
    Anton M 30
    Willy M 40
    shirley F 38
    sharon F 37
    The report has the following output, for example
    name     sex age
    John     M 20
    Anton     M 30
    Willy M 40
    Shirley F 38
    Sharon F 37
    Now i would like to add comment through a button.
    The report layout looks like
    name sex age
    John M 20 <add comment button>
    After submitting the <add comment button> you can enter text which deals with John
    text='John doesnot like me'
    Finally the report display the comment as well
    name sex age
    John M 20 'John doesnot like me' <update/delete comment button>
    Anton M 30 <add comment button>
    Willy M 40 <add comment button>
    Shirley F 38 <add comment button>
    Sharon F 37 <add comment button>
    After submitting the <update/delete button> you can change or delete the entered text.
    I hope this example clears things up.
    Regards,
    Ram

  • Best practice for Javadoc comments in both an interface and implementation

    For the Spring project I'm writing, I have interfaces with typically 1 implementation class associated with it. This is for various good reasons. So I'm trying to be very thorough with my Javadoc comments, but I realize I'm basically copying them over from interface to implementation class. Shouldn't Javadoc have a setting or be smart enough to grab the comments from my interface if the implementation class doesn't have a comment? Unless of course there is interesting information about the implementation, it's rare the 2 sets of comments would be different.

    Thanks Thomas!! Exactly what I was looking for. Here's the JavaSE 6 version of the page you provided:
    http://java.sun.com/javase/6/docs/technotes/tools/windows/javadoc.html#inheritingcomments

  • How to add the "comment and markup toolbar" in adobe reader 9

    Hi there, I've been trying to add the comment and markup toolbar in acrobat reader 9 but I simply cannot do it. I've tried both the Tools and View menus but I cannot add this particular toolbar. Does anyone know the reason? What can I do to get this toolbar? Even when in a pdf document commenting is not allowed, Should'nt I be able at least to see the toolbar unavailable?
    Many thanks,
    Enrique

    Impossible, and illogical. PDF files are not streamed or RAM-cached so if someone is viewing a file they must have already saved it.

  • Add Facebook Comments to a Lightroom HTML Gallery template

    If you prefer displaying your photos on your own website using Lightroom’s web galleries over uploading your photos to Facebook then one of the drawbacks is the lack of commenting. Fortunately, there’s a way to add Facebook Comments to your own website and gallery. See an example here. To implement this solution see the step by step tutorial:
    http://so.ca/?p=265
    Does anyone know if Lightroom templates are over-written when upgrading to a new version of Lightroom? It would be annoying to have to repeat these steps with each version upgrade.
    Thanks.

    Hi Jerfrank,
    If you are looking outside of SharePoint, I would suggest you to check Facebook SDK to integrate with your site.
    Here are few links to start with -
    https://developers.facebook.com/docs/javascript/quickstart/ 
    http://web.appstorm.net/roundups/social-media-roundups/15-simple-ways-to-integrate-facebook-into-your-website/
    <cite>https://facebooktoolkit.codeplex.com</cite>
    https://developers.facebook.com/samples
    https://www.facebook.com/leadingbyexample
    And a bing search for "Facebook developer API" could also help you.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • How can I change the font in the "Add Text Comment" tool, which has Helvetica as default?

    How can I change the font in the "Add Text Comment" tool, which has Helvetica as default?

    Is this for the ADD TEXT COMMENT tool?  How do you change the default font for the ADD TEXT (EDIT TEXT) TOOL?

  • Acrobat XI Pro "add text comment" not working

    In Acrobat, my "Add Text Comment" comment feature no longer works. I am using Acrobat XI Pro on Win7.
    The property "Locked" vs Make Property Default fix on these forums did not work for me.
    When I click on a document to add a text comment,
    1. Acrobat creates a small square (uneditable)
    2. Acrobat adds a comment to the comments list
    I am unable to type any text, nor edit the box, nor change the box's size, nor see the properties.
    Any thoughts are appreciated as to how to fix this feature.
    Michael

    Hi cpa-michael,
    If this issue appears in any PDF that you try to add comments to, please repair the Acrobat installation by choosing Help > Repair Acrobat Installation.
    If the issue appears only in one PDF file, that PDF may be damaged and you can try Saving As to repair the document, or you can try to "refry" the PDF by printing to PDF from within Acrobat.
    Best,
    Sara

  • Keep javadoc comments in class files

    Hi there,
    is there a way to keep javadoc comments in classfiles?
    Reason: Not any company can spread the source for their algorithms, but as customer requests grow to use it with eclipse, code completion and javadoc, there is a need for such "feature".
    Any ideas? Not documented tricks?
    Ty

    Ty, for you reply - this in response ... maybe you can support it ;-)
    Your report has been assigned an internal review ID of 719676,
    which is NOT visible on the Sun Developer Network (SDN).

Maybe you are looking for