Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
107 views

Python parser for Python-like language

I'm looking to write a Python import filter or preprocessor for source files that are essentially Python with extra language elements. The goal is to read the source file, parse it to an abstract ...
5
votes
2answers
300 views

How to use T4 to generate two files at the same time from one template?

I am having a case in which I need to generate two CSharp code files with pretty the same code but different namespace of the input and output types of the methods. In fact each file is for a specific ...
3
votes
3answers
651 views

C# Reflection, changing a method's body

Is it possible to change the body of method during runtime? class Person { public void DoSth() { Console.WriteLine("Hello!"); } } I wanted to have a simple input field (like a textbox) ...
3
votes
2answers
304 views

Where is TextTransform.exe Located on Hard drive?

Where is TextTransform.exe located? I'm trying to implement the solution in this post: http://stackoverflow.com/questions/1646580/get-visual-studio-to-run-a-t4-template-on-every-build However I'm ...
2
votes
2answers
173 views

Is there a way to generate c# code from serialized object in bson (file on a disk) to

What I have is a serialized object (given to me serialized from another language). I would like to generate c# code for this and use it in JSON.Net or similar. I have just started looking at JSON.Net ...
2
votes
3answers
219 views

How do I extract the names from a simple function?

I've got this piece of code: import inspect import ast def func(foo): return foo.bar - foo.baz s = inspect.getsource(func) xx = ast.parse(s) class VisitCalls(ast.NodeVisitor): def ...
1
vote
4answers
238 views

maven - jibx codegen - storing binding.xml

I'm using maven to build a jar containing generated code from an schema file using jibx. To do this I'm using the jibx-maven-plugin with the schema-codegen goal. I want to include the generated ...
1
vote
3answers
102 views

Modernising a 'Hand Rolled' Data Access Library

There's this web app, which relies on a sort of data access library (simple data objects and associated objects to perform CRUD operations on them) which is generated directly from the database. So ...
0
votes
1answer
48 views

Get a function declaration from another llvm::Module

In my application i have 2 LLVM modules - the runtime one (which contains void foo(int * a) function definition) and executable one (which i'm creating using LLVM C++ API). In my executable module i ...
0
votes
0answers
36 views

How to add additional functionality to DAWN in a GMF Editor?

I am doing a project based on CDO and Dawn. I am a beginner in CDO. My task is to develop a collaborative GMF Editor using Dawn. Currently, I can can run a basic DAWN application, as given in this ...
0
votes
1answer
218 views

jibx 1.2.3 modular schema to code generation - binding compilation causes Internal error - cannot modify class

I have a maven multi-module project having hierarchy: parent + ota-module + ota-common + ota-veh-avail-rate OTA2003B ( ...
0
votes
1answer
251 views

JiBX Code-Gen Error: Duplicate name on format element at

I am trying to generate code (with customizations applied) for OTA schema available at [OTA2003B] ( http://www.opentravel.org/Specifications/SchemaIndex.aspx?FolderName=2003B ) using JiBX Code Gen ...
0
votes
0answers
54 views

maven - jibx codegen - storing binding.xml

Sorry this repeats previous content that was truncated. I'm using maven to build a jar containing generated code from an schema file using jibx. To do this I'm using the jibx-maven-plugin with the ...
0
votes
1answer
130 views

Generate mxml file from excel file

How to generate mxml(flex code) from excel file. how to Create flex code from xls file.
0
votes
1answer
291 views

How to use Axis2 Code Generator for Eclipse?

I installed the Axis2 Code Generator for Eclipse, and am trying to create a Web Service Client. Here's what I'm filling out in the dialog: When I try to submit this, I get an error: I only get ...
0
votes
1answer
89 views

JiBx error when inlcuding other schema

Here is the schema I am using for JiBx to codegen and bind. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.abc.com/abc/service/APIService" ...
0
votes
0answers
135 views

Castor Codegen using existing java classes

Is it possible to generate application code using existing classes from xsd files? I have 2 maven modules, using castor for dynamically class generation. One of the module (A) depends on other (B) ...