Tagged Questions

3
votes
1answer
72 views

Template mechanism with fields from a class

What is the best template mechanism where I can select fields from a class and use some macro to generate jsp form elements, java beans with setters, etc? I know a plugin for eclipse does this. Are ...
2
votes
2answers
137 views

Question on code generation in eclipse

What is the most useful code generation tool in eclipse, velocity or jet templates? Anybody has experience with both of them and know the pro and cons?
2
votes
4answers
2k views

NetBeans Code Templates ${date}?

I have this code template in Eclipse @since ${date} when entered i get something like this : @since 4.8.2009 But when i add the same template (@since ${date}) to NetBeans it outputs @since ...
1
vote
1answer
91 views

java code template

I'm trying to make a code template that will generate tostring, constructor from field, and a default constructor. I already looked at Useful Eclipse Java Code Templates and in ...
1
vote
1answer
34 views

How do you set up new class templates in Eclipse?

I mainly program Android, and one of the things I (and the rest of android programmers I'm sure) use with tenacity is android.util.Log. Every class I create has a private static final String TAG = ...
1
vote
1answer
53 views

Programmatically import code templates in eclipse

Is it possible to programmatically import code templates in eclipse?
1
vote
0answers
310 views

Insert code templates via a keyboard shortcut

I have various code templates in Eclipse such as header comments and library functions that are frequently called (all stored in Preferences, C/C++ -> Editor -> Templates). I figure there must be a ...
0
votes
1answer
96 views

can I add import when editing method body code template in eclipse

I am trying to edit the template of creating a new method. I want to do something like this: throw new mypackage.UnimplementedException(); but I want to add my package to imports and not to declare ...