Tagged Questions
The codesynthesis tag has no wiki summary.
5
votes
2answers
177 views
Convert a method name to bean name at runtime?
I am working with BeanBinding a lot in my current project and so I have code that looks like...
TypeA objA;
TypeB objB;
Bindings.createAutoBinding(UpdateStrategy.READ,
objA, ...
4
votes
3answers
928 views
How to provide additional custom implementation of accessor methods when using @synthesize?
I want to fire some code when a property is accessed and changed. I use @property... and @synthesze... in my code for my ivars. The properties are retained, so I'd like to keep that memory management ...
2
votes
1answer
180 views
Code Synthesis - C++/Tree sub node serialization
I'm using this great tool (http://www.codesynthesis.com/products/xsd/c++/tree/) to convert xsd into c++ code.
I'm trying to obtain the xml string from a sub node, but the only thing that i can get is ...
2
votes
3answers
338 views
XSD : How to make a polymorphic “list”?
I'm trying to build an element type that keep a list of change element type that is the base type of several other child type. I got this code :
<xs:complexType name="change_list" >
...
1
vote
2answers
99 views
Canonical relation operators (==,<,…)
Consider a struct (as in: stupid aggergation of several members) with members that all implement a certain relation R (e.g. <):
struct X {
A a;
B b;
};
For most operators there exists a ...
1
vote
3answers
804 views
C++ Serialization Clean XML Similar to XSTREAM
I need to write a linux c++ app which saves it settings in XML format (for easy hand editing) and also communicates with existing apps through XML messages over sockets and HTTP. Problem is that I ...
1
vote
4answers
264 views
How to use SVN to make our code in sync?
I am use tortoiseSVN to synchronize our code.
But recent I found that there is something that is not so convenient.
When i modify a file, let's say a.jsp,
and my colleague might also modify this ...
0
votes
1answer
29 views
Dynamically switch backends with Code Synthesis ODB
I am really not sure how to go about this. The manual and examples provided with ODB provide a large amount of useful information regarding schema definition, and making them work with any one ...
0
votes
2answers
32 views
How are object pointers in objective-c synthesized?
I'm new to Objective-C and I have been working with simple programs, and I was wondering how you would synthesize an Objective-C object pointer. So if I had a simple header file like so:
//
// ...
0
votes
0answers
70 views
XSD to C++ mapping using code synthesis xsd- create object model with default values
I plan to use code synthesis to map XML files to C++ classes
The feature i'm missing is automatic creation of default values for missing element, based on the xsd schema default values. (like in this ...
0
votes
2answers
256 views
XML data binding for C++ like JAXB for java
I am writing this question as a complete **naive** in this field of "Use of data binding and parsing in c++". So, please bear with me . :)
You may find this question as duplicate of THIS
After ...
0
votes
1answer
385 views
XSD : How to set attributes values in children element type?
In an xsd file I have this element base type :
<xs:complexType name="event" abstract="true" >
<xs:attribute name="move" type="aos:move_ref" use="required" />
<xs:attribute ...
0
votes
2answers
275 views
Code Synthesis doesn't seem to generate a “valid” xml tree
I've been working with code synthesis xsd to generate an xml tree to ensure constinency of the xml output to the original xsd.
After initial testing, everything looked ok but when I tried entering ...
0
votes
2answers
676 views
C++ types using CodeSynthesis XSD Tree Mapping
I'm using CodeSynthesis XSD C++/Tree Mapping utility to convert an existing xsd into c++ code we can populate the values in. This was we always make sure we follow the schema.
After doing the ...