Hello Beet,
I agree with Jacob that code completion or
a class browser would be ideal. There’s also a documentation topic that
describes, in the abstract, what methods you get for which schema forms. That’s
here: http://xmlbeans.apache.org/docs/2.0.0/guide/conMethodsForGeneratedJavaTypes.html
You might also find this overview of
generated Java types helpful: http://xmlbeans.apache.org/docs/2.0.0/guide/conJavaTypesGeneratedFromUserDerived.html
Steve
From: Jacob Danner
Sent: Tuesday, November 07, 2006
10:58 AM
To: user@xxxxxxxxxxxxxxxxxxx
Subject: RE: getting java class
names/javadocs for generated classes
II find it easiest with an editor that has
code completion.
If this is not available to you (eclipse,
jedit), the naming and methods get generated based on the following:
All classes extend
org.apache.xmlbeans.XmlObject, you can find the javadoc for this class online.
The packages were loosely determined by
following similar conventions to the JAX-RPC spec.
To get familiar with the 80%’s of
xmlbeans it may be useful to run through some of the tutorials and samples
available from the website.
-Jacobd
From: Beet
[mailto:btrang@xxxxxxxxx]
Sent: Tuesday, November 07, 2006
10:33 AM
To: user@xxxxxxxxxxxxxxxxxxx
Subject: getting java class
names/javadocs for generated classes
Hello, I performed scomp on my xml schema and got a jar file out of
it. However, I do not know where to go next. How do I get a list of
the java class names and methods for the generated classes? How do I get
the javadocs?
I suppose I can generate the source code and try to do a separate javadoc
command on that, but really wish there is an easier way.