vote up 42 vote down star
51

You can create various Java code templates in Eclipse via the

Window->Preferences->Java -> Editor -> Templates

e.g.

sysout is expanded to:

System.out.println(${word_selection}${});${cursor}

You can activate this by typing sysout followed by CTRL+SPACE

What useful Java code templates do you currently use?
Include the name and description of it and why it's awesome.

There's an open bounty on this for an original/novel use of a template rather than a built-in existing feature.

  • Create Log4J logger
  • Get swt color from display
  • Syncexec - Eclipse Framework
  • Singleton Pattern/Enum Singleton Generation
  • Readfile
  • Const
  • Traceout
  • Format String
  • Comment Code Review
  • String format
  • Try Finally Lock
  • Message Format i18n and log
  • Equalsbuilder, hashcodebuilder
flag
I will mark this as community wiki and not-programming-related if people think it's appropriate... please let me know... – Jon Jun 22 at 19:00
1  
Definitely community wiki. Certainly programming related. – altCognito Jun 22 at 19:01

14 Answers

vote up 32 vote down check

Create Log4J logger:

${:import(org.apache.log4j.Logger)}
private static final Logger _logger = Logger.getLogger(${enclosing_type}.class);

It both creates the Logger with a proper category and imports it.

Source.

link|flag
1  
Cool. I didn't know about the ${:import ...} thingy. – JesperE Jun 23 at 5:13
Me neither, nice! – altCognito Jun 23 at 12:00
Excellent, this was new info for me also. – Troggy Jul 2 at 17:35
1  
I think ${:import ...} only works in newer versions of Eclipse. I'm stuck with 3.2 and it doesn't work for me. – Adam Crume Jul 7 at 22:10
wow that is really impressive – Yoely Jul 8 at 6:33
vote up 1 vote down

The template for the logger declaration is great.

I also create linfo, ldebug, lwarn, lerror for the log levels that I use more often.

lerror:

logger.error(${word_selection}${});${cursor}
link|flag
vote up 1 vote down

Throw an IllegalArgumentException with variable in current scope (illarg):

throw new IllegalArgumentException(${var});
link|flag
vote up 1 vote down

And an equalsbuilder, hashcodebuilder adaptation:

${:import(org.apache.commons.lang.builder.EqualsBuilder,org.apache.commons.lang.builder.HashCodeBuilder)}
@Override
public boolean equals(Object obj) {
    return EqualsBuilder.reflectionEquals(this, obj);
}

@Override
public int hashCode() {
    return HashCodeBuilder.reflectionHashCode(this);
}
link|flag
vote up 3 vote down

Format a string

MessageFormat - surround the selection with a MessageFormat.

 ${:import(java.text.MessageFormat} 
 MessageFormat.format(${word_selection}, ${cursor})

This lets me move a cursor to a string, expand the selection to the entire string (Shift-Alt-Up), then Ctrl-Space twice.

Lock the selection

lock - surround the selected lines with a try finally lock. Assume the presence of a lock variable.

${lock}.acquire();
try {
    ${line_selection}
    ${cursor}
} finally {
    ${lock}.release();
}

NB ${line_selection} templates show up in the Surround With menu (Alt-Shift-Z).

link|flag
vote up 6 vote down

A little tip on sysout -- I like to renamed it to "sop". Nothing else in the java libs starts with "sop" so you can quickly type "sop" and boom, it inserts.

link|flag
vote up 2 vote down

strf -> String.format("msg", args) pretty simple but saves a bit of typing.

String.format("${cursor}",)
link|flag
vote up 1 vote down

I use this for MessageFormat (using Java 1.4). That way I am sure that I have no concatenations that are hard to extract when doing internationalization

i18n

String msg = "${message}";
Object[] params = {${params}};
MessageFormat.format(msg, params);

Also for logging:

log

if(logger.isDebugEnabled()){
  String msg = "${message}"; //NLS-1
  Object[] params = {${params}};
  logger.debug(MessageFormat.format(msg, params));
}
link|flag
vote up 1 vote down

I like a generated class comment like this:

/**
 * I... 
 * 
 * $Id$
 */

The "I..." immediately encourages the developer to describe what the class does. I does seem to improve the problem of undocumented classes.

And of course the $Id$ is a useful CVS keyword.

link|flag
vote up 3 vote down

Nothing fancy for code production - but quite useful for code reviews

I have my template coderev low/med/high do the following

/**
 * Code Review: Low Importance
 * 
 *
 * TODO: Insert problem with code here 
 *
 */

And then in the Tasks view - will show me all of the code review comments I want to bring up during a meeting.

link|flag
vote up 6 vote down

Some additional templates here:

http://fahdshariff.blogspot.com/2008/11/eclipse-code-templates.html

I like this one:

readfile

 ${:import(java.io.BufferedReader,  
           java.io.FileNotFoundException,  
           java.io.FileReader,  
           java.io.IOException)}  
 BufferedReader in = null;  
 try {  
    in = new BufferedReader(new FileReader(${fileName}));  
    String line;  
    while ((line = in.readLine()) != null) {  
       ${process}  
    }  
 }  
 catch (FileNotFoundException e) {  
    logger.error(e) ;  
 }  
 catch (IOException e) {  
    logger.error(e) ;  
 } finally {  
    if(in != null) in.close();  
 }  
 ${cursor}
link|flag
i think this is what a method is for :) – drscroogemcduck Jul 6 at 13:37
1  
Err I think you've missed the point... saying that I actually don't know what your point is... it's about code generation not modularity... – Jon Jul 6 at 16:12
vote up 3 vote down

Get an SWT color from current display:

Display.getCurrent().getSystemColor(SWT.COLOR_${cursor})

Suround with syncexec

PlatformUI.getWorkbench().getDisplay().syncExec(new Runnable(){
    public void run(){
    	${line_selection}${cursor}
    }
});

Use the singleton design pattern:

/**
 * The shared instance.
 */
private static ${enclosing_type} instance = new ${enclosing_type}();

/**
 * Private constructor.
 */
private ${enclosing_type}() {
    super();
}

/**
 * Returns this shared instance.
 *
 * @returns The shared instance
 */
public static ${enclosing_type} getInstance() {
    return instance;
}
link|flag
Daniel, thanks for your edit ;o) – Manuel Selva Jun 23 at 11:39
1  
Just a quick note - According the Maestro known as Joshua Bloch using an Enum should be the preferred method for creating singletons in Java. – Pablojim Jul 2 at 18:51
Hi Pablojim, Since I posted this template I start reading Effective Java and I changed my singletons implementations to enum. Nevertheless I didn't find a way to have the template generating the enum and thus modifying the class declaration. Have you got this template ? Thanks Manu – Manuel Selva Jul 3 at 6:43
FYI: Here's the enum singleton pattern electrotek.wordpress.com/2008/08/…. I don't particulary like it but then I don't have many singletons. It's easy to turn this into a Java template. – pjp Jul 3 at 9:44
vote up 4 vote down

One of my beloved is foreach:

for (${iterable_type} ${iterable_element} : ${iterable}) {
    ${cursor}
}

And traceout, since I'm using it a lot for tracking:

System.out.println("${enclosing_type}.${enclosing_method}()");

Just thought about another one, have found it over Internet some day const:

private static final ${type} ${name} = new ${type} ${cursor};
link|flag
1  
foreach is available as a standard code assist in Eclipse, I don't see that your template does anything additional to the standard version – Rich Seller Jul 3 at 14:08
1  
Right, and sysout is very innovative template. The question was regarding, useful templates we are using. – Artem Barger Jul 3 at 17:03
vote up 10 vote down

For log, a helpful little ditty to add in the member variable.

private static Log log = LogFactory.getLog(${enclosing_type}.class);
link|flag

Your Answer

Get an OpenID
or

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