Questions tagged [generated-code]
231 questions
0
votes
1 answer
NetBeans: Creating an Action object and attach it to one or more components on a form by IDE tools
Because there is of no use manually edit the automatically Generated Code, how can I creat an Action object and attach this action to one or more components on a form?

camiluslim
- 35
- 1
- 4
0
votes
1 answer
Save Jcodemodel Object after exit
I have a issue with JCodeModel (SUN). My program is running every day, and I want to add some function to classes which was created before the current running.
JcodeModel support this? If not, there is any option to save the JCodemodel Object in…

Or Smith
- 3,556
- 13
- 42
- 69
0
votes
1 answer
where is the code generated by visual studio controls editor for visual c++?
When I make a dialog with visual c++ editor, I would see the code generated by my editor to make the window components..It's possible? When I double-click on a component, I see only the handler

volperossa
- 1,339
- 20
- 33
0
votes
1 answer
Visual Studio + Qt cleaning of generated files
When I press "Clean Solution" in Visual Studio 2008 for a Qt project all moc and ui header files from generatedfiles folder are cleaned.
I have one more my own generated *.h file in this folder, how to delete it too?
Where moc and ui headers file…

Funt
- 399
- 8
- 23
0
votes
1 answer
Android generated R Class - syntax Error
I have a project and its generated R class, generate its first string id in a strange form, "=" and the resource name are switched!
public static final class string {
public static final int = setting_ringtone1 0x7f06000e;
public static…

Tano
- 3,620
- 1
- 29
- 31
0
votes
1 answer
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 Eclipse, but if you try to generate an APK, you…

Pierre
- 114
- 4
0
votes
1 answer
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 is, with great flexibility of jquery/backbone, our…

GaryX
- 169
- 1
- 2
- 12
0
votes
1 answer
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.4.1). The sample code I was given has a Service…

Jon C Crawley
- 31
- 2
- 6
0
votes
2 answers
Netbeans generated code
I have a netbeans project that I imported into eclipse. When I use my code formatting style in eclipse, it breaks the auto generated code in Netbeans. The code is similar to the following.
private void…

Milhous
- 14,473
- 16
- 63
- 82
0
votes
0 answers
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 similar to this?
If so, will you be so kind to point…

RynoB
- 323
- 2
- 14
0
votes
1 answer
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…

Dana Klein
- 159
- 1
- 12
0
votes
4 answers
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+= "";
});
$("#drowdown").html(html);
there is so much HTML my javascript has to add to the $("#dropdown") element it…

inControl
- 2,215
- 4
- 24
- 39
0
votes
1 answer
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 script that gives me the html code like this with…

user1715402
- 3
- 1
0
votes
0 answers
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 {
@CustomAnnotationTargetProperty(propertyName="gender")
private String…

S Kr
- 1,831
- 2
- 25
- 50
-1
votes
2 answers
Multiple @interface declarations generated by Xcode for NSViewController?
I am making a Cocoa application, and using Xcode for various code-generation. Works fine for generating .h and .m files for subclassing UIView, but when i subclass UIViewController i get an @interface declaration identical in both files, except that…

qqq
- 1,360
- 1
- 9
- 24