Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to Eclipse and I'm using for some Android development. Eclipse is making me increasingly aware of poor habits I've formed (I.E. not capitalizing class names, etc.).

One thing I've noticed is that when I use the // characters to comment, the text turns green, but when I use the /** **/ characters, the text turns light blue. Is there a reason for this? Some type of comment specification that I missed somewhere? Are these supposed to serve as different functions for different types of comments?

I'm running Helios Service Release 1 (Build 20100917-0705) for Win 7(x64) if that makes any difference.

share|improve this question

3 Answers

up vote 13 down vote accepted

Block comments that start with /** in java are javadoc comments. Eclipse colors them differently to set them apart from normal comments.

Here's a guide that discusses how to write documentation comments for java: http://www.oracle.com/technetwork/java/javase/documentation/index-137868.html

When you hover over a class/method/field that has a javadoc comment in Eclipse, you'll see a little documentation popup that contains a formatted version of the javadoc comment for that class/method/field.

You can also use the javadoc command-line tool to generate HTML documentation for your packages and classes. When you do this, the tool uses the javadoc comments in your source code to build the documentation.

share|improve this answer
very interesting... that should make my documentation easier! – Joshc1107 Mar 24 '11 at 2:54

Eclipse comment defaults:

  • // and /* .. */ are standard comments and show up in one color, green
  • /** ...... **/ are javadoc comments and show up in a different color, blue
share|improve this answer

Nothing big reason behind this,

// means Single line comment

/** **/ means JavaDoc comments

Just to differtitte between them, the two different colors are given.

share|improve this answer
/** ....... */ – J-16 SDiZ Jun 15 '12 at 15:32
@J-16SDiZ did you downvoted the answer. Please can you explain why? – developer Jun 15 '12 at 15:40
It's /** .. */, not /** .. **/ – J-16 SDiZ Jun 17 '12 at 9:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.