CodeModel is a Java library for code generators.
0
votes
1answer
57 views
For generating programs there is “ CodeModel API” in java, like is there any API for Objective-C?
I Want to generate A simple "Hello World" objective-C program, Which API i have to use for that? Really I don't know is it possible or not?, but in java I know there is CodeModel API.
JCodeModel cm = ...
0
votes
0answers
27 views
How to generate an abstract method implementation using sun-codemodel?
I'm trying to generate the code below using codemodel, but I have no idea how to create that sort of structure (I forgot how those are called in java, I think is an abstract method implementation or ...
1
vote
0answers
32 views
Codemodel array
I use CodeModel to generate Java code.
I expect output like this:
public static final String[] COLUMNS = {ID, CODE, NAME};
I tried:
definedClass.field(JMod.PUBLIC|JMod.STATIC|JMod.FINAL, ...
0
votes
0answers
23 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 ...
1
vote
1answer
60 views
CodeModel How do i add @Pattern.List annotations com.sun.codemodel
I'm using com.sun.codemodel for generating my classes and adding JSR303 annotations. This is working fine, except when I want to add @Pattern.List annotations.
...
0
votes
1answer
54 views
CodeModel: manually insert import statement
How do I manually insert an import statement using CodeModel?
I'd like to use Arrays.toString(...) in a direct statement.
Context: I'm generating a toString() method in the generated code just like ...
1
vote
1answer
112 views
JCodeModel and elseif
I'm generating Java source code with JCodeModel and want to get an "if-elseif" block like this:
if (foo){
} else if (bar) {
}
As far as I understand the according code would be something like ...
2
votes
1answer
57 views
Extends AbstractEntity<MyClass> with codemodel
Does anyone know how to generate this with CodeModel ??
...
public class MyClass extends AbstractEntity<MyClass> {
...
I already have something like this.. almost there..
JCodeModel ...
1
vote
2answers
257 views
Create JCodeModel from existing source file(s)
I want to create Java source code with code snippets that are possibly syntactically invalid. That's possible with com.sun.codemodel.JBlock#directStatement() method.
My problem is, that I want to ...
0
votes
0answers
90 views
How to generate a switch on enum with sun codemodel?
I'm trying to figure out how the code in this question was generated using codemodel: Using Enum constant in switch with CodeModel
This is my attempt:
//Create Enum - this works fine
JDefinedClass ...
0
votes
0answers
72 views
replace variable usage with method in codemodel
I'm searching for a solution where I can define a field in a class and use the reference in this particular class. The codemodel should create a method for instantiating the field and should replace ...
2
votes
1answer
90 views
adding method for existing with CodeModel
I am trying to add abstract methods to my interfaces with CodeModel. Is this possible?
JCodeModel cm = new JCodeModel();
JClass ref = cm.ref(Sample.class);
After having a reference to actual class, ...
1
vote
1answer
213 views
How to create <? extends subtype> with JCodeModel?
I've used JClass.narrow on JCodeModel to create the necessary generics for types, but I can't figure out how to generate something like this.
private Class<? extends Serializable> dataType;
...
1
vote
1answer
91 views
How do I remove unnecessary brackets using CodeModel's JExpr.plus method?
I'm using JExpr.plus() method to form a String and syntactically it is correct, but it has a lot of brackets. For example:
JExpr.lit("ONE").plus(JExpr.lit("TWO")).plus(JExpr.lit("THREE"))
returns
...
0
votes
2answers
148 views
CodeModel How do i get value at specific index with com.sun.codemodel
I'm using com.sun.codemodel for generating my classes.
I need to dynamically get array value depending on index argument.
So i have an invocation that suppose to return an array
JcodeModel model = ...
0
votes
0answers
67 views
Jaxb plugin errorhandler
I have written a Jaxb-plugin to add some extra field to all classes at generation time.
Somewhere in this plugin I would like to be able to report an error if the configuration is not correct.
So I ...
0
votes
1answer
321 views
How to type cast using Sun/Oracle CodeModel library?
I'm trying to use the Java CodeModel library to generate some code. In my generated code I need to perform a type cast. I want something like this...
foo.setBar( ...
7
votes
5answers
726 views
A better way of code generator in Java?
I have a class with a graph inside. I iterate the graph and create a string that builds the graph, and then I just write that string into a Java file.
Is there a better way of doing this, i read about ...
0
votes
1answer
107 views
Use sun-codemodel to generate expression like b().c()
I'm trying to use sun-codemodel to generate source code, checking the API for a long time however no luck.
JBlock body2 = method2.body();
JInvocation arg = body2.invoke( "a" ).arg( xxx ).invoke( ...
3
votes
1answer
523 views
Sun CodeModel generic method
Does anyone know to to generate the following generic method declaration using CodeModel:
public <T> T getValue(Class<T> clazz){...}
usage:
ValueType value = getValue(ValueType.class);
...
2
votes
2answers
305 views
What is the role of ClassOutline / JClass / CClass in CodeModel?
My question concerns writing JAXB plugins, in particular JAXB codemodel.
What is the role of ClassOutline (and it's companions) and JClass (and companions) and CClass (and companions)? When looking ...
1
vote
2answers
409 views
CodeModel - How to define annotations with an enum value?
It seems that the java code generator framework CodeModel is not capable of creating annotations which only contain an enum value without a name - unfortunately a very common pattern (which JPA uses, ...
1
vote
1answer
483 views
NoClassDefFoundError: org/junit/AfterClass during annotation processing
I am generating code with CodeModel during annotation processing with maven. That code is for JUnit testing:
JMethod tearDownClass = testClass.method(
JMod.PUBLIC | JMod.STATIC, Void.class, ...
0
votes
1answer
111 views
How to obtain the Assert JClass in CodeModel?
The org.junit package defines the Assert class for JUnit testing. How can I retrieve this static class as a JClass in the CodeModel framework?
1
vote
1answer
161 views
ternary operator support for code model?
Is it possible to use the ternary operator in code generated by com.sun.codemodel?
I wish to generate the following statement:
this((A==null)?A.getSomething:null)
1
vote
1answer
363 views
Using Enum constant in switch with CodeModel
I am using the code model API to generate java source files. I have an enum defined through codemodel API and I want to use that in a switch block. In a switch statement, the enum constants should be ...
2
votes
0answers
346 views
Does CodeModel support importing classes from unspecified packages?
I want to generate a file containing a reference to a class without knowing which package it actually comes from.
E.g. the user supplies
import foo.*
import blah.*
Button("press me")
and I need ...
0
votes
2answers
2k views
CodeModel help needed for right-hand singleton.getinstance() assignment
I've been able to generate 99% of what I need with the CodeModel API, but I am stumped here...
Using the various "directXX" methods does not add import statements to the generated code, and I can ...
3
votes
1answer
950 views
Using generics with com.sun.codemodel
Using com.sun.codemodel, I would like to generate a generic LinkedList field. I can create a raw field using this code:
JDefinedClass masterClass;
String detailName;
JDefinedClass detailClass;
...