The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
9 views

How do you control Eclipse's generated Bluetooth java files?

I've got an Android project built under Eclipse-Indigo that works just fine. I recently copied many of the files and rebuilt under Eclipse-Juno. The app runs if you install it and/or run it from ...
0
votes
1answer
34 views

Generating modern js-based rich client from server side?

I am working on a intra-net project, which uses javascript for client side effects/widgets, like tree, grid, dragging. We are thinking about to use jquery/backbone plus some jquery ui. The problem ...
0
votes
1answer
83 views

Axis 1.4.1 wsdl2Java Locator classes

I spend a good amount of time on rest services but not so much on SOAP services. So this might be a stupid question, but i am going to ask it anyway. I am building my wsdl files with wsdl2java (axis ...
1
vote
1answer
127 views

Generate getters and setters for PHP in Enterprise Architect

I'm using Enterprise Architect to make a UML class diagram and generate PHP5 code. How can I generate getter and setter methods for a certain class?
0
votes
0answers
53 views

IntelliJ include a directory contained in an excluded directory?

Can IntelliJ include a source directory contained in an excluded directory? I am using Google Protocol Buffers and am placing the generated class files in the target/proto-generated directory. I have ...
0
votes
2answers
104 views

Tycho Compiler not picking up generated source code

I am fairly new to the world of maven and tycho, so hopefully this is just something obvious that I am missing. I am trying to build a plugin using tycho but I am unable to get the ...
3
votes
1answer
93 views

Generate GO source code

I am looking for a way to generate GO source code. I found go/parser to generate an AST form a GO source file but couldn't find a way to generate GO source from AST.
3
votes
3answers
514 views

Ruby On Rails: Create Models View And Controller from existing database

Is it possible to create controllers, models and view from the existing database? I could not find the command over googling. Here i am talking about Reverse Engineering
0
votes
1answer
105 views

How can I get Eclipse to mark generated code like equals to prevent code quality tooling issues?

Generated code tends to flag up in our SONAR code quality tooling for things like cyclomatic complexity. It seems that it is a recognised problem and there is support for annotation-based suppression. ...
0
votes
0answers
82 views

Generate objective-c code

I need to generate objective-c code based on a number of steps followed in my utility application (Mac OS X app). Something which will trigger "Generate code"... Has anybody perhaps done something ...
0
votes
0answers
112 views

Force all typed datasets to regenenate their designer.cs files

We found a problem in our projects where some of the dataset .xsd files are out of sync with the designer.cs files while upgrading from VS2008 to VS2010. In VS2008 everything builds perfectly, until ...
0
votes
1answer
218 views

code generate with xtend in xtext project

I'm working on xtext project and I'm generating objects through .xtext file. I want to add new attribute to one of the generated object. I saw in ...
1
vote
1answer
146 views

Xtext - Generating object - generate more data

I have xtext file similar to the xtext describe in here: (www.ebpml.org/blog2/index.php/2010/11/05/mde-xtext-and-json) JSONDataSource: root = Object ; Object: '{' firstObject=TerminalObject (',' ...
2
votes
1answer
110 views

Android crash in mysterious d() method

Got a Play Store crash report (hooray). The stack trace lists an NPE occurring in MyActivity#d(), inside of MyAtivity#onCreate(). Is this a compiler-generated method? I sure didn't write it! Caused ...
0
votes
4answers
104 views

JQuery filling an option tag with a lot of data makes browser crash

When I use the following code var html = ""; $.map(data.modelTypes, function (item) { html+= "<option>" + item.type + "</option>"; }); $("#drowdown").html(html); there is so much ...
0
votes
1answer
175 views

Generate html code from csv file

I have one csv file separated by the following character |. The file has three columns; one is the url(COL1), the other is a small text(COL3), and the last one its an image location(COL2). I need a ...
1
vote
1answer
90 views

Split emscripten generated file

I have a very big Javascript file (> 50MB) generated by Emscripten (Debug mode). Debugging this file is a pain in the browser. A solution would be to split the file in several small files. Loading ...
3
votes
1answer
158 views

Generate source using jaxb from an xsd that is in my classpath

I'm trying to generate java classes using JAXB from a schema in my class path. For CXF I generated java classes from a wsdl in my classpath like so: <wsdlOptions> <wsdlOption> ...
0
votes
0answers
59 views

Generate 1 dto to another dto convertor using freemaker. Stuck at the generating enum type1 to enum type2 convertor

I am using freemaker to generate dto convertor from one type to another. Defining things through custom annotations E.g: @CustomAnnotationTargetDTO(type=DTO2) Class DTO1 { ...
1
vote
1answer
104 views

Dynamically adding mojo-generated code to source path

I have authored a mojo that generates code and sticks it under {root}/target/generated-sources/foo. When I execute: mvn clean install I get errors indicating that the generated sources are not ...
1
vote
1answer
60 views

Where are delegate instances added to events when generating automatic event handlers?

When I double click on a button (myButton) in Design view of a .aspx web form, an event handler is automatically generated in the code behind: protected void myButton_Click(object sender, EventArgs e) ...
3
votes
1answer
78 views

Generate and compile name to index translation/mapping for faster reusability

Suppose I get data from a service (that I can't control) as: public class Data { // an array of column names public string[] ColumnNames { get; set; } // an array of rows that contain ...
1
vote
1answer
690 views

How to use autoInitializePage in JQueryMobile with client-side generated content?

I'm trying to prevent Jquery Mobile initialization until after the page content has been loaded, but I'm not getting the desired result. The project is a simple Question/Answer quiz. In my HTML ...
3
votes
1answer
191 views

How to reorder automatically generated methods in Netbeans?

When using Netbeans' features for generating event handlers from a GUI, for example, while the body of the generated methods are editable, I cannot find a way to change the order of the generated ...
1
vote
0answers
151 views

JPA generating an invalid column

Helo there. I am attempting to a execute a many-to-many get all query. To be clear, I am attepmting to get a collection within a collection to be pulled back. Ie, we will get a result set, but in ...
0
votes
1answer
293 views

Changing namespace names in MVC 3 applications causes compilation errors in generated files at runtime

I just started a new project and was reorganizing the source structure including renaming namespaces. After changing a namespace from CRTReadmissions.Web.Helpers to Crt.Readmissions.Web.Helpers ...
1
vote
3answers
108 views

unknown number of built sources with automake

I have a script that generates c++ source files of previousy unknown number and name which then need to be compiled into one library. So far, I do this with a simple (shell) for loop in my Makefile: ...
1
vote
2answers
197 views

How to put Maven-generated sources under version control?

I'm using Maven to build and deploy jOOQ. I now want to start generating XJC-generated classes using appropriate Maven plugins (before, I used ant scripts). This works very nicely for me, but I'm ...
0
votes
2answers
106 views

How do I generate code under Eclipse+PyDev?

I'm developing a system, and I have build a code generator that emits a bunch of classes based on a configuration file. I would like to configure PyDev to invoke the generator for me whenever the ...
1
vote
0answers
49 views

Thrift generated files with new complier version name classes differently

I updated my thrift compiler to the latest version, and it appears to be naming classes in the generated code differently than before. T_User_UserBase becomes UserBase. Of course, I have many ...
2
votes
3answers
437 views

Generate a C# object based on an xml file?

This may be way out in left field, crazy, but I just need to ask before I go on implementing this massive set of classes. Basically, I'm writing a binary message parser that decodes a certain ...
0
votes
0answers
1k views

Altering the timeout setting of an Axis 1.4 generated SOAP Java client

I have a problem with changing the standard options used by an Axis 1.4 generated web service client code. We consume a certain web service of a partner who is using the old RPC/Encoded style, which ...
1
vote
0answers
226 views

Generate @WebService with Eclipse Annotation Processing

I'm using the Eclipse Annotation Processing feature to generate a webservice client. My Processor extends "javax.annotation.processing.AbstractProcessor" and is itself annotated ...
0
votes
2answers
166 views

JPA - How to get any produced sql code programmatically?

JPA gurus, let say I have the following entity : @Entity class MyEntity { @Id private Long id; // setters and getters here } through JPA on an Oracle database something similar would ...
1
vote
1answer
308 views

API for indentation of generated code

in my current project, we have a couple of code generator routines to help us through some mindless tasks. Everything works fine from the technical point of view, so that might be more a curiosity ...
1
vote
4answers
219 views

How to duplicate a file but change a few parameters inside?

I am using python as an interface to several fortran files in my model. I want to duplicate a fortran file several times but at each copy, I will change the parameters that describe my model. For ...
1
vote
1answer
256 views

Using Acceleo 3 with Ant

I'm looking for information on how to perform Acceleo source generation with an Ant script. I've done some Googleing, but I haven't really found any straightforward way to do that. I'm looking first ...
0
votes
2answers
166 views

Use of PHP generated sites in SEO? [closed]

I've got a site that is based around a contact form. This form is generated according to the variables passed in the URL, and the information passed is put in headers in the body, and also in the ...
0
votes
1answer
118 views

How it's better to add generatable sources files to qmake project?

There is somefile.h.in and script somefile.h.pl which generates number of files like "somefile.h.gen" or "somefile_other.cpp.gen2". How to add source generation phase in qmake? In plain Makefile I'd ...
2
votes
2answers
56 views

How do I remove format from Linq property?

I´m building a Windows Forms aplication using LINQ to SQL. I´m using the auto generated code from the dbml file. Visual studio generated this code for the CNPJ property from my table: ...
4
votes
3answers
1k views

Java - Dynamically generate code with annotations at build time

I'm looking for a solution for generating code. I have googled, searched on SO and some blogs but I didn't find a good solution. I'd like to put an annotation on my class and at compilation time, ...
3
votes
2answers
863 views

Generated code not taken into account in maven compile process

I have a maven project generating a new class from an annotation processor during a compile process. The class is successfully generated in /target/generated-sources/annotations/, but it is not ...
4
votes
2answers
205 views

Convert list of positions [4, 1, 2] of arbitrary length to an index for a nested list

Assuming this list nestedList = ["a", "b", [1, 2, 3], "c",[4, 5, 6, [100, 200, 300]], "d"] I have a function that returns a position list for a nested list of arbitrary depth. Examples: [2, 1] ...
6
votes
3answers
1k views

Do any PHP libraries exist for parsing ASN.1 or generating PHP code based on it?

I've already looked myself but it seems my Google-fu is not strong today. I'm working to develop a standardized protocol for exchanging data structures over a TCP/IP connection between an Apache / ...
0
votes
1answer
97 views

How to create a collection of singletons from all classes in a namespace

Lets say we have a namespace called AllFoos. And Lets say all classes in the AllFoos namespace implement a specific interface called IFoo and are all singletons. Now we have: HashSet<IFoo> ...
4
votes
1answer
325 views

How can I in ant wait until a file is usable?

I'm trying to fix a build file where a part of it runs a bash script to generate a file. This file generation takes under a second and wasn't a problem until we moved to eclipse. The issue is that if ...
1
vote
3answers
556 views

What causes Visual Studio 2008 form designer to auto-generate broken code?

I have been developing a windows form based project in visual basic .NET, moving the code between several computers simply by copying the solution folder. This has never caused any problems in the ...
7
votes
1answer
4k views

Exclude file from StyleCop analysis - “auto-generated” tag is ignored

At the beginning of a C# file, I have added: //----------------------------------------------------------------------- // <copyright company="SomeCompany" file="MyFile.cs"> // Copyright © My ...
2
votes
2answers
388 views

How can I make JAXB-generated classes participate in a Visitor pattern?

Hey folks, hopefully a nice easy one here. I'm generating classes with JAXB from a schema, and I'd like to be able to process them with a Visitor pattern. To do that, I think I need every ...
3
votes
7answers
3k views

Styling Microsoft-Word-Generated HTML

Ugh. Word is notorious for its bloated, convoluted, non-standards-compliant, non-semantic HTML. Unfortunately, I have a professor who is requiring us to generate an outline to very exacting ...

1 2