A quick glance at the schema and I can make a guess at the issue here. A lot
of your attributes are nothing more than names, they need types associated
with them.
So instead of:

<xs:attribute name="foo" />
try
<xs:attribute name="foo" type="xs:string" />

-jacobd



On Dec 6, 2007 9:47 AM, tyju tiui <[EMAIL PROTECTED]> wrote:

> Hi,
>
> I'm trying to create a nice helper for building Torque database definition
> files.
> I've created an xsd from their dtd and built my jar using scomp with the
> "-javasource 1.5" option.
>
> The problem is, I'm unable to set / get attributes of a column other than
> the name.
> I should be able to access type, primarykey, required, etc... attributes
> of a column element?
>
> Attached is my xsd ... any help would be greatly appreciated.
>
> Thanks,
>
> Ty
>
>
> ------------------------------
> Looking for last minute shopping deals? Find them fast with Yahoo! 
> Search.<http://us.rd.yahoo.com/evt=51734/*http://tools.search.yahoo.com/newsearch/category.php?category=shopping>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>

Reply via email to