The code-templates tag has no wiki summary.
0
votes
0answers
26 views
How to configure Eclipse code templates to insert static class field on getter insertion
One very common syntax pattern when working the Java beans and binding frameworks is to create a static final String field representing the property.
This winds up looking like this:
static public ...
0
votes
1answer
17 views
How to create code templates in Visual Studio 2010?
If you are programming in C# in Visual Studio and type in "prop" and hit enter, the IDE generates a property. Eclipse also has this feature and the user can define custom commands that expands into ...
2
votes
1answer
43 views
Fast implement wrapping (delegate methods) in Eclipse?
Is there some template or something to implement iterface methods with accessing to wrapped member?
For example, suppose I have
public class MyClass implements List<Something> {
private ...
0
votes
0answers
50 views
Eclipse code template: to get version from MANIFEST.MF
How to get version, that is inside META-INF\MANIFEST.MF, in Eclipse IDE Code style template or when inserting JavaDoc @since?
Related:
How to get Maven pom.xml version in Eclipse code template?
3
votes
1answer
161 views
How to get Maven pom.xml version in Eclipse code template?
I have Code style template that defines default comments with annotations for new Java classes (see below).
How to make it insert the version from Maven pom.xml?
Something like
@since ...
1
vote
1answer
60 views
Eclipse Code Templates for class
In Eclipse code templates for class files are not clear.
Where do I define ${filecomment} and other elements?
0
votes
0answers
59 views
Insert last variable used, using phpStrom Live Templates
Is there any way to use a variable from my own code (not specific one, just the one from above line) in phpStorm's Live Template?
For example, I've defined following live template: ...
0
votes
0answers
16 views
How to modify $(tags) in Eclipse
The default configuration in Eclipse for Java-->Code Style-->Code Template-->Methods is
/**
* ${tags}
*/
It produces something like:
/**
* @param argument1
* @param argument2
* @return
*/
...
0
votes
2answers
68 views
Change eclipse template for setter so that actual parameter be named 'value'?
I want setters coded like this:
private String name;
public void setName(String value) {
this.name = value;
}
but if I program eclipse template like this
${field} = value;
I get the ...
0
votes
0answers
186 views
Netbeans code template - do not work outside php markup
Lately I have been working with some WordPress template and NetBeans.
I would like to use code templating functionality outside of the <?php ?> markup.
All works fine as long as use tab inside ...
1
vote
0answers
90 views
Customizing Linq-to-SQL DBML template
I am using Linq-to-sql for generating code for database interaction. I need the generated code to include Interfaces for each concrete class, and believe the only easy way to achieve this is to modify ...
1
vote
0answers
60 views
Dynamic code templates eclipse
Can code templates in eclipse be little more dynamic? E.g. for a new instance it generates :
Person name = new Person();
The instance does not become person in the first try. Can it be done?
0
votes
2answers
140 views
How to specify different AddController code templates for different MVC 3 Areas?
I know how to customize a controller/view template for an MVC project. However, I have a few different MVC 3 Areas in my project and each Area has its own Models, Views and Controllers. Is there a ...
3
votes
3answers
367 views
code template in management studio
Can I find in management studio the Following feature?
I want to write a specific word and that it be replaced by a statement specifies. Ex: I write "ss" and replace "select * from" or write "johnid" ...
4
votes
1answer
1k views
NEW T4 Controller Template in MVC3
As you know to create new t4 templates in MVC, need to add CodeTemplates folder to project. There are two main subfolders 1-AddController, 2-AddView I always use AddView folder to add new templates to ...
0
votes
0answers
31 views
How to customize Eclipse code templates for non-java perspective
is it possible to customize code templates in Eclipse in a perspective that doesn't provide the Editor>Templates menu option in the Preferences window?
I'm using the scheme perspective and there's no ...
0
votes
2answers
256 views
Replace space with underscore in Netbeans Code Templates
I created the below JavaScript Code Template in Netbeans 7.1.1
This is to generate code automatically in the editor, instead of typing it.
do_this('${selection}${cursor}',13)
which will result in ...
6
votes
2answers
377 views
Code templates - unit name clash between Delphi versions
Different Delphi versions (in my case 2007, XE and XE2) seem to use the same code-template repository, such as ..\Documents\RAD Studio\code_templates. Since XE2 uses namespaced units, this causes ...
3
votes
1answer
178 views
How to place cursor in NetBeans Java file templates?
I would like to have the cursor in the JavaDoc area when creating interfaces, classes, etc. in NetBeans. You can use ${cursor} for non-file-based templates, but this doesn't work for file templates.
...
4
votes
3answers
283 views
Writing a Java adder remover, method code template for Eclipse
There are too many time I encounter the need to write an adder/remover methods for lists:
public void addSomething(Something something){
somethings.add(something);
}
public void ...
0
votes
2answers
227 views
expand template in netbeans 7.0.1 PHP doesn't work
When I enter an abbreviation of a code template and press the expand key nothing happens. I also get no suggestions when i wait for the code completion.
I had a look at Tools > Options > Editor > ...
2
votes
1answer
312 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 ...
2
votes
1answer
88 views
How to set camelCase to code generated by code templates in Flash Builder 4.5?
I'm trying to change the default event handler code generator, so that it generates the name of the function as onComponentidEventname For example:
<s:Button id="myButton"
...
1
vote
1answer
425 views
netbeans: code templates new line
To respect Zend's coding standard I want to have my methods this way:
public function myMethod()
{
//my code here
}
But when I type fnc + CTRL+SPACE the code template put it like this:
public ...
1
vote
1answer
178 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
140 views
Can a ProjectTemplate archive be stored within a Visual Studio solution, similar to the way CodeTemplates (.tt) files work?
There are many blog posts out there that show you how to create and include T4 (Text Template Transformation Toolkit) files (.tt) in your solution and have them override those stored in the default ...
2
votes
1answer
132 views
Programmatically import code templates in eclipse
Is it possible to programmatically import code templates in eclipse?
3
votes
1answer
108 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 ...
3
votes
4answers
180 views
Code template implementation with C#
When I need code template, I can use Python as follows.
templateString = """
%s
%s
%s
"""
print templateString % ("a","b","c")
How do I implement the equivalent with C#?
I tried
using System;
...
0
votes
1answer
560 views
Modifying T4 code templates for ASP.NET MVC to get rid of full namespace reference
We're using (there is need to tell where the files are, thanks) custom T4 code templates on creating a view or controller. Default implementation makes this kind first row.
<%@ Page Language="C#" ...
1
vote
1answer
901 views
vdoc for php in Netbeans 6.9.1 seems not working
When I insert a vdoc, like discriped here, Netbeans not offers any suggestions:
/* @var $persistenceManager Tx_Extbase_Persistence_Manager */
$persistenceManager = ...
0
votes
1answer
186 views
IntelliJ plugin to print fields from any class
I am new to IntelliJ. Is there a plugin for IntelliJ where I can select a few fields and print them or create jsp form elements, etc. I know they have toString, equals, etc.
6
votes
3answers
270 views
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?
1
vote
0answers
627 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
150 views
Can you recommend a step-by-step tutorial on developing C# Code Templates with MyGeneration?
Basically the documentation provided in the official web site is not helping me so much to understand how it works.
Can you recommend a step-by-step tutorial on developing C# Code Templates with ...
0
votes
1answer
778 views
NetBeans code templates, with comments
I have following code template in NB 6.9.1:
function ${functionName}($$${param})
{
${selection}${cursor}
} // end: ${functionName} ()
NB formats this to:
function testFuncName($param)
{
}
...
0
votes
1answer
138 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 ...
2
votes
6answers
979 views
Adding some comments to the C/C++ header file automatically or manually
I add the following preprocessor code in header files all the time.
#ifdef _HELLO_H_
#define _HELLO_H_
#endif
Is there a way to do this automatically (I mean, when I load the header file for the ...
0
votes
1answer
48 views
Shortcut to get all private field names combined with && operator as a generated line of code?
Is it possible to use reflection when we write a code-template?
I was just thinking if it is possible to write a piece of code-template that will return me a list of all private field in the class ...
2
votes
1answer
697 views
XSLT: Is there a way to “inherit” canned functionality?
i am once again having to cobble together a bit of XSLT into order to turn generated XML into (rather than simply generating HTML).
i'm having huge deja-vu this time again. i'm once again having to ...
7
votes
3answers
2k views
Loop over fields in eclipse code template
Can you do loops in code templates, e.g I want to print all the fields in a class. Is there a template for that?
4
votes
4answers
929 views
Generating F# code
T4 is the "official" code generation engine for C#/VB.NET. But F# doesn't support it (this is from April, but I couldn't find any newer mentions). So what is a good way to generate F# code?
EDIT:
I ...
1
vote
1answer
480 views
IntelliJ Live Template: modified setters template
Is anyone know how to set up a live template in intellij for doing specialized setters
- i'm using v5, but I accept with pleasure knowledge for a more recent release) -
My first need is a ...
2
votes
2answers
1k views
Code Templates in MonoDevelop 2.0
I'd like to create some custom templates in MonoDevelop 2.0 (under Ubuntu) but am not finding the process as intuitive as I'd like. Does anyone know where in templates are stored? In what format?
...
4
votes
6answers
3k 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 ...
5
votes
5answers
2k views
Useful Delphi code templates
I've been programming in Delphi for a little over two years now, and I've only got maybe 5 custom templates, I feel as though I should have more.
If anyone has any particularly useful ones it would ...