Topics related to the generation of code as the output of an application, instead of directly writing code by a programmer.
1
vote
0answers
13 views
Access of array of doubles in loop
I'm working on implementing code generation for arrays in LLVM. I have this weird problem with my generated LLVM IL code that when I'm loading elements from an array of doubles in a loop I get just ...
0
votes
1answer
17 views
Convert EdmType to JsonSchemaType
I am making C# code generation with T4 for an ASP.NET Web API project... I need a simple way to convert an EdmType to JsonSchemaType.
Thanks!
0
votes
0answers
11 views
How to costumize Methode when we generate code using Codedom
I am using CodeDOM to generating and Compile Source Code .
I would like to customize Methods so , I can generate similar source code .
namespace CodeDOMSample
{
using System;
public sealed ...
0
votes
0answers
19 views
Insert Eclipse Java Code Template on new line
I have the following code template set up in Eclipse
System.out.println("${word_selection}: [" + ${word_selection} + "]");
This automatically inserts a debug line for the variable I have selected ...
0
votes
2answers
29 views
Python how to generate dicts from names and reverse
I want to simplify my code, especially to avoid square brackets; so my question is :
def someFunction():
someString = "Hi!"
someNumber = 22
somePointer = ""
someList = []
...
0
votes
0answers
8 views
rspec tests for rails geneartors
I'm trying to find a usable rspec framework to test generators.... (I found a few in the toolbox, but they seem to be a) old, b) not happy with rails 3.2).
I've tried the top 2 from ...
1
vote
2answers
21 views
SCons code generation and VariantDir
I would like SCons to generate some source files for me in my src/ directory, and then build them as any other source file in my build directory build/variantX.
This is my SCons file:
import SCons
...
0
votes
0answers
7 views
MetadataTypeAttribute not adorning additional attributes to properties
I have a code generated class that has a set of attributes on properties. I would like to add additional attributes to these properties but I cannot do that on the code generated class. Therefore I ...
2
votes
1answer
48 views
dynamic creation of php code from array in php
I have a code to generate php code from an array of words, however the list of words is variable
like:
$list=array(
"BMW",
"MUSTANG",
"DBM",
"Txt62"
);
...
-2
votes
0answers
14 views
What are some different code generators for Java EE projects [closed]
If I want to generate complete structure for a spring based Java EE project, what are my options? I am using eclipse.
1
vote
1answer
23 views
How to generate source code from template with Maven?
I have a file with a list of tokens:
tokens.txt
foo
bar
baz
and a template file:
template.txt
public class @token@MyInterface implements MyInterface {
public void doStuff() {
// ...
1
vote
1answer
71 views
Code generation with macros: Class with members and constructor
Let's say I want to define classes of the following structure:
struct MyClass {
int x;
bool y;
float z;
MyClass(QVariantMap data) : x(data["x"]), y(data["y"]), z(data["z"]) {}
};
As ...
0
votes
1answer
25 views
xtend2 code generation with ecore meta-model
I created an ecore-Metamodel, a genmodel and a corresponding model.
Now I want to generate Code from this.
I found this post and wanted to implement it. I get no errors and so on, but how do I bring ...
6
votes
0answers
45 views
GWT TypeOracle.getTypes does not return all types
I have a custom generator that generates code only for somes classes in my project. The following code is at the beginning of the generate method, and puts all the classes I will need to work on in ...
0
votes
1answer
49 views
Java Code beautifier/formatter library with PHP, JavaScript support
I'm searching a java library that formats/beautifies a given source code snippet. The library should support at least PHP and JavaScript source files.
The reason why i'm searching this is because the ...
4
votes
3answers
214 views
Generate stateless client-side forms from server-side Models?
Client-side (example)
JavaScript framework: Ember.js, AngularJS or KnockoutJS
Server-side (example)
Python-based: Flask, web2py, Django; or Ruby-based: Rails, Ramaze, Sinatra
Are there any ...
0
votes
0answers
13 views
Custom formatter for Sun Codemodel
I'm using Java Sun Codemodel to generate java classes on the fly, and it works pretty well for me.
Now I have an additional challenge: How do I control how the code is formatted? Is there any way at ...
0
votes
0answers
60 views
Object oriented three address code generation
I'm working on a project related to compiler design. I need to generate three address code for a Java-based language and it implies the use of objects and scopes. I would like if you can help me ...
1
vote
2answers
61 views
Using Roslyn to parse/transform/generate code: am I aiming too high, or too low?
(What I'm trying to do is work around the Application.Settings/MVVM problem by generating an interface and wrapper class from the vs-generated settings file.)
What I'd like to do is:
Parse a class ...
0
votes
1answer
37 views
Visual Studio 2010 T4 Code Generation for Templated Types
I am using the default T4 templates to generate code based on my UML Model. I have a number of classes that expose Template Parameters. These generate code as expected. For example the MessageResponse ...
3
votes
4answers
155 views
Insert inferred type annotation for Scala val/var/def
At the moment, I type in type annotations for public vals, vars and defs in my Scala classes, traits and objects[1] - either by inferring the types of them mentally, or occasionally by hovering over ...
0
votes
0answers
22 views
Generate C# classes from JSON Schema (not from Json Data) [duplicate]
I am sorry for posting a duplicate question (see
Generate C# classes from JSON Schema)
but is there a solution? There are quite a bit of tools to generate C# classes from Json data, but nothing (I ...
0
votes
0answers
60 views
Generate C# functions from C++
I need to generate C# code out from c++ code.
I only need to extract classes and functions and put in notimplementedexception. Example of what I want below:
c++:
namespace TestNamespace
{
...
-1
votes
1answer
42 views
Generate JSF2 CRUD's - Can I create the bean and xhtml automatically for any entity?
I'm looking for any kind of software which allows me to generate, in an automatically way, the MVC files (a bean and a xhtml view) of any CRUD of any entity using Java Server Faces 2 and Richfaces 4 ...
1
vote
2answers
66 views
Working with Isabelle's code generator: Data refinement and higher order functions
This is a follow-up on Isabelle's Code generation: Abstraction lemmas for containers?:
I want to generate code for the_question in the following theory:
theory Scratch imports Main begin
...
1
vote
0answers
65 views
Which is the best way to java code generation using ftl?
I´m writing to ask some advice about code generation
I have a Struts2 datagrid which use the dependency injection pattern. To edit the grid I have to insert the field in the view and add it to the ...
2
votes
1answer
70 views
Assign content to multiple blocks inside a mixin which generates a nested HTML structure dynamically in Jade?
I want to create the following HTML structure
<div class="outerspace">
<div class="inner1"><p>Inner1 content</p></div>
<div class="inner2"><p>Inner2 ...
0
votes
3answers
52 views
Automatically reverse an xsl
Lets say I have written a simple xslt which transforms from one message to another is there any way I can automatically generate the inverse?
Original XSLT
<xsl:stylesheet ...
4
votes
1answer
74 views
Haskell LLVM — Duplicate Functions Created
The problem I am having with the LLVM-Haskell bindings is that I am getting "duplicated" names. I think the best way to explain my problem is with a small concrete example (note the example is ...
0
votes
1answer
44 views
Unit Test code generation
We have a project developed by 2 years with poorly designed architecture. Now a days there are no any unit tests at all.
Current version of system works satisfyingly but we vitally need refactoring ...
0
votes
0answers
28 views
Automator-like GUI framework
I am looking for some html/javascript based library/framework that works more or less like the automator on OS X: You have a library of actions and you pipe them together on a gui. Each action can be ...
4
votes
1answer
59 views
Equivalent of comma operator in Java?
I am trying to do a source transformation on some Java code that results in code where for every expression, a method is called if the expression is evaluated.
(The use case is a simplistic line ...
0
votes
1answer
56 views
Ecore model to Xtext
I have a complete EMF-Metamodell (ecore) created. Now I want to try Code-Generation with Xtext2, because I found somewhere that xtext2 is better for code generation than xpand.
I created a new ...
0
votes
1answer
23 views
How can I avoid using Microsoft custom tools that generate code for Entity Framework?
Microsoft's tendency to give custom tools that generate code within Visual Studio is Not always appealing to me.
In terms for Entity Framework, I want to avoid using the Db Context Template or ...
2
votes
1answer
53 views
How to auto-generate early bound Enum properties for Entity attributes that are normally Option Sets?
Generating early bound entity classes for CRM Entities is fairly simple. Generating the Enums for the OptionSets is fairly simple as well. Generating the OptionSet Enum properties for entities that ...
0
votes
2answers
41 views
T4. Error: An expression block evaluated as Null
I've added template.tt file that looks like:
<#@ template language="C#" debug="true" #>
<#@ output extension=".cs" #>
<#@ import namespace="System" #>
<#@ import ...
0
votes
1answer
17 views
Jibx Codegen class not found
I'm trying to run Jibx CodeGen in the command line to generate Java source files from xml schema (xsd) files. However, it seems I'm not even able to run CodeGen. I know I should provide at least the ...
1
vote
2answers
50 views
Makefile target always up to date with code generation
I have a script which generates multiple C++ .h and .cpp files, based on a configuration file. This script also generates a file called 'Makefile.inc', and this file contains a variable with the ...
1
vote
1answer
86 views
C# generics wrapper generator
I'm looking for a code generator (preferably with source) that will allow me to generate wrapper classes (using reflection) for generic classes that i have in my code.
I've done a bit of searching ...
1
vote
2answers
56 views
Isabelle's Code generation: Abstraction lemmas for containers?
I am experimenting with the Code generator. My theory contains a datatype that encodes an invariant:
typedef small = "{x::nat. x < 10}" morphisms to_nat small
by (rule exI[where x = 0], simp)
...
2
votes
2answers
47 views
Why is this custom program name outside of customer space?
I found a 'Z' transaction calling a program not in the customer space.
This program "seems" to be something developed by the customer, meaning its name is
"AQZZZFI_ABC=====ZPYORD========", where "ABC" ...
-1
votes
1answer
43 views
Pros and Cons of CodeSmith
I am new in Codesmith code generator tool. I don't know what are pros and cons of codesmith. I have some queries. Please help me to clear the use of codesmith.
What is advantage and disadvantage of ...
0
votes
1answer
34 views
how to generate code from a graphical model to a specefic api?
i am building an editor for manipulating graphical elements, each element must represent a type of element in an API Specification.
The elements of the API are basicaly some classes ad interfaces, ...
0
votes
0answers
19 views
IntelliJ code generation with PHP fields
Using the latest version of IntelliJ with the PHP plugin.
Is there a way to generate private fields for each of these? I can right click and do generate getters/setters, but I have not found a way to ...
0
votes
0answers
38 views
Code Generation Framework that able to generate template and java source code
Is there any generic java based code generation framework that still active?
Currently I have 50 reports to make, and creating 50 flt ( freemarker template-XML based ) manually sounds like a lot ...
1
vote
2answers
156 views
Omnigraffle Classes Diagram to code
I makes my UML classes diagrams into OmniGraffle Pro tool, but I would like to make C like code from it's diagram automatically. Maybe anyone know how I can make this? Thanks.
0
votes
1answer
50 views
What tools provide hooks for transforming JSON to model class objects?
I can easily find tools that:
transform JSON to csharp model classes
transform JSON to objc model classes
transform JSON to POJOs for java
etc.
But what happens if I'm looking to step in the ...
1
vote
1answer
50 views
generate latex source files
What are the required and recommended tools (e.g. using java) to create an "interpreter" which generates latex source files from textfiles (which have an own syntax)?
example:
This is a list of ...
0
votes
1answer
57 views
Can I execute code from another file in a T4 .tt template for code generation?
I'm using several T4 templates to generate several T4 files, and most of them share a lot of the same code, so naturally I would like to make a function out of it and put it in a different file that ...
0
votes
0answers
32 views
Ruby Tool (recorder, proxy) to generate Mechanize code
I'm looking for a tool to record http requests and generate ruby mechanize code.
The idea is to navigate in the browser through a proxy and all requests are recorded as mechanize code.
Th only ...




