Tagged Questions
The code-templates tag has no wiki summary.
4
votes
4answers
608 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 ...
4
votes
5answers
1k 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 ...
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
1answer
32 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"
...
2
votes
4answers
83 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;
...
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
6answers
542 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 ...
2
votes
1answer
278 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 ...
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
113 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 ...
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 ...
1
vote
1answer
231 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 ...
1
vote
1answer
905 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?
...
0
votes
1answer
70 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 > ...
0
votes
0answers
11 views
Using methodcomment in eclipse using code Templates
here is the link pertaining to the quesiton
http://help.eclipse.org/galileo/index.jsp?topic=/org.eclipse.cdt.doc.user/reference/cdt_u_c_code_templates_pref.htm
only typecomment and filecomment seem ...
0
votes
1answer
73 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 ...
0
votes
0answers
71 views
How to auto generate code using code templates in NetBeans?
i am doing a project where i need to generate codes by looking at a xml file. i can read the xml files and get the necessary details and i know how to write the template file but i don't know how to ...
0
votes
1answer
281 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#" ...
0
votes
1answer
503 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
99 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.
0
votes
1answer
60 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
338 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
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 ...
0
votes
1answer
35 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 ...