I'm looking for the rules about capitalizing or not the items we want to make XML Binding in Java. I've only got the Simple'javadocs but I've not found these kind of rules. May be they are in StAX ? Thanks for help.
Logged In: NO
This is a planned feature, should be done in the next release.
Niall
Also, just so you know. There is a name= attribute for each annotation. This can contain a capatalized name. For example.
@Root(name="MyClass") public MyClass {
@Element(name="Name") public String name; }
Done in 2.0.2.
Log in to post a comment.
Logged In: NO
This is a planned feature, should be done in the next release.
Niall
Logged In: NO
Also, just so you know. There is a name= attribute for each annotation. This can contain a capatalized name. For example.
@Root(name="MyClass")
public MyClass {
@Element(name="Name")
public String name;
}
Done in 2.0.2.