[Xdoclet-user] XDT-1273 - @joined-subclass

2005-05-03 Thread Richard.Featherstone
I'm having problems using @joined-subclass. When I have a class inheriting from another class everything works fine. When I try to have an interface at the root of the hierarchy it doesn't work. I have the .class tag on the interface with a .id tag. The subclasses have .joined-sublass and .joine

Re: [Xdoclet-user] XDT-1345 @hibernate.subclass ignores inheritance via interface

2005-04-28 Thread Richard.Featherstone
Thanks Nick. Is there also a problem with multiple inheritance? The information contained in this email message may be confidential. If you are not the intended recipient, any use, interference with, disclosure o

[Xdoclet-user] XDT-1345 @hibernate.subclass ignores inheritance via interface

2005-04-28 Thread Richard.Featherstone
Any news on this problem? It affects 1.2.3 as well. The information contained in this email message may be confidential. If you are not the intended recipient, any use, interference with, disclosure or copying of

[Xdoclet-user] Re: mapping collection

2005-04-28 Thread Richard.Featherstone
I'm using xdoclet in myeplipse I think its 1.2.1 but I'm not sure. I'm trying to create a mapping for the Topic class. I have a Topic object that has a collection of Topic object as sub topics. I don't want a reference to the parent topic in the subtopics so I'm trying to map the collection end

[Xdoclet-user] mapping collection

2005-04-27 Thread Richard.Featherstone
Hi, I have a class Topic that has a collection of sub topics of the same class. I want the parent to know about the collection of subtopics, but the subtopics not to know about the parent topic. Public class Topic ... /** * @hibernate.set cascade="save-update" lazy="true" * @hibernate.c

[Xdoclet-user] XDoclet2 Use

2005-02-21 Thread Richard.Featherstone
Not sure if this is the correct place to post this, if not sorry. I'm trying to use xdoclet2 but when I try to run it my ant script fails. Any help would be great. Cheers. hibernate-doclet: BUILD FAILED java.lang.NoSuchMethodError: org.xdoclet.QDoxMetadataProvider.getDocletTagFactory()Lorg/xdo

Re: [Xdoclet-user] many-to-one

2005-02-16 Thread Richard.Featherstone
It's definitely a bug. If I chance the ordering of attributes to @hibernate.many-to-one not-null="true" foreign-key="FK_USERS" cascade="all" unique="true" outer-join="true" column="USER_ID" class=" User I get in the cfg.xml file. I will file a Jira.

[Xdoclet-user] many-to-one

2005-02-16 Thread Richard.Featherstone
Am I doing some thing wrong here? I have: @hibernate.many-to-one column="USER_ID" class="User cascade="all" not-null="true" unique="true" outer-join="true" foreign-key="FK_USERS" in my java, but it generates: many-to-one name="credentials" class=" U

Re: [Xdoclet-user] Dynamically generating JSP files.

2005-02-09 Thread Richard.Featherstone
I'm just starting to use xdoclet and this may be a useful feature for me. Is this a difficult task? What is the best way to learn to extend xdoclet to do this and should I look at xdoclet or xdoclet2? Any help with this would be much appreciated.

[Xdoclet-user] Dynamically generating JSP files.

2005-02-09 Thread Richard.Featherstone
Hi, Is there a way to dynamically generate jsp files for input and displaying java beans using xdoclet tags? SO you could write a class and generate the hibernate mappings and input forms dynamically in one place as the bean evolves. Richard ***