Update of
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags
In directory
sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv19076/src/main/java/org/xdoclet/plugin/hibernate/qtags
Modified Files:
HibernateArrayTag.java HibernateBagTag.java
HibernateClassTag.java HibernateColumnTag.java
HibernateIdbagTag.java HibernateJoinTag.java
HibernateJoinedSubclassTag.java HibernateListTag.java
HibernateMapTag.java HibernatePrimitiveArrayTag.java
HibernateSetTag.java HibernateUnionSubclassTag.java
Added Files:
HibernateCommentTag.java
Log Message:
fix for XDP-141 problem, tag parameters are changed!!!
Index: HibernateListTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateListTag.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** HibernateListTag.java 24 Aug 2005 09:42:36 -0000 1.11
--- HibernateListTag.java 9 Sep 2006 13:16:05 -0000 1.12
***************
*** 6,10 ****
package org.xdoclet.plugin.hibernate.qtags;
! import org.xdoclet.plugin.hibernate.qtags.parameter.Comment;
import org.xdoclet.plugin.hibernate.qtags.parameter.Lazy;
import org.xdoclet.plugin.hibernate.qtags.parameter.OrderBy;
--- 6,10 ----
package org.xdoclet.plugin.hibernate.qtags;
!
import org.xdoclet.plugin.hibernate.qtags.parameter.Lazy;
import org.xdoclet.plugin.hibernate.qtags.parameter.OrderBy;
***************
*** 17,20 ****
* @qtags.once
*/
! public interface HibernateListTag extends InvertibleCollectionTag, Lazy,
OrderBy, Comment {
}
\ No newline at end of file
--- 17,20 ----
* @qtags.once
*/
! public interface HibernateListTag extends InvertibleCollectionTag, Lazy,
OrderBy {
}
\ No newline at end of file
Index: HibernateBagTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateBagTag.java,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** HibernateBagTag.java 24 Aug 2005 09:42:36 -0000 1.15
--- HibernateBagTag.java 9 Sep 2006 13:16:05 -0000 1.16
***************
*** 6,10 ****
package org.xdoclet.plugin.hibernate.qtags;
! import org.xdoclet.plugin.hibernate.qtags.parameter.Comment;
import org.xdoclet.plugin.hibernate.qtags.parameter.Lazy;
import org.xdoclet.plugin.hibernate.qtags.parameter.OrderBy;
--- 6,10 ----
package org.xdoclet.plugin.hibernate.qtags;
!
import org.xdoclet.plugin.hibernate.qtags.parameter.Lazy;
import org.xdoclet.plugin.hibernate.qtags.parameter.OrderBy;
***************
*** 18,21 ****
* @qtags.once
*/
! public interface HibernateBagTag extends InvertibleCollectionTag, Lazy,
OrderBy, Comment {
}
\ No newline at end of file
--- 18,21 ----
* @qtags.once
*/
! public interface HibernateBagTag extends InvertibleCollectionTag, Lazy,
OrderBy {
}
\ No newline at end of file
Index: HibernateClassTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateClassTag.java,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** HibernateClassTag.java 24 Aug 2005 09:42:36 -0000 1.16
--- HibernateClassTag.java 9 Sep 2006 13:16:05 -0000 1.17
***************
*** 16,20 ****
public interface HibernateClassTag extends
com.thoughtworks.qdox.model.DocletTag, Lazy, BatchSize, DiscriminatorValue,
DynamicInsert, DynamicUpdate, Proxy, Schema, Table, Where, Name,
Subselect, EntityName, Catalog, Abstract, Node,
! Check, Rowid, SelectBeforeUpdate, Persister, Comment {
/**
* Specifies that instances of the class are (not) mutable
--- 16,20 ----
public interface HibernateClassTag extends
com.thoughtworks.qdox.model.DocletTag, Lazy, BatchSize, DiscriminatorValue,
DynamicInsert, DynamicUpdate, Proxy, Schema, Table, Where, Name,
Subselect, EntityName, Catalog, Abstract, Node,
! Check, Rowid, SelectBeforeUpdate, Persister {
/**
* Specifies that instances of the class are (not) mutable
Index: HibernateJoinTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateJoinTag.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** HibernateJoinTag.java 24 Aug 2005 09:42:36 -0000 1.3
--- HibernateJoinTag.java 9 Sep 2006 13:16:05 -0000 1.4
***************
*** 15,19 ****
*/
public interface HibernateJoinTag extends
com.thoughtworks.qdox.model.DocletTag, Schema, Catalog, Subselect, Fetch,
! Inverse, Comment {
/**
* If enabled, Hibernate will insert a row only if the properties defined
by this join are non-null
--- 15,19 ----
*/
public interface HibernateJoinTag extends
com.thoughtworks.qdox.model.DocletTag, Schema, Catalog, Subselect, Fetch,
! Inverse {
/**
* If enabled, Hibernate will insert a row only if the properties defined
by this join are non-null
Index: HibernateIdbagTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateIdbagTag.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** HibernateIdbagTag.java 24 Aug 2005 09:42:36 -0000 1.3
--- HibernateIdbagTag.java 9 Sep 2006 13:16:05 -0000 1.4
***************
*** 7,11 ****
import org.xdoclet.plugin.hibernate.qtags.parameter.Cascade;
- import org.xdoclet.plugin.hibernate.qtags.parameter.Comment;
import org.xdoclet.plugin.hibernate.qtags.parameter.Lazy;
import org.xdoclet.plugin.hibernate.qtags.parameter.OrderBy;
--- 7,10 ----
***************
*** 16,19 ****
* @author Anatol Pomozov
*/
! public interface HibernateIdbagTag extends BaseCollectionTag, Lazy, Cascade,
OrderBy, Comment {
}
\ No newline at end of file
--- 15,18 ----
* @author Anatol Pomozov
*/
! public interface HibernateIdbagTag extends BaseCollectionTag, Lazy, Cascade,
OrderBy {
}
\ No newline at end of file
--- NEW FILE: HibernateCommentTag.java ---
package org.xdoclet.plugin.hibernate.qtags;
import com.thoughtworks.qdox.model.DocletTag;
/**
* represents comment which can be placed in various places into mapping this
* tag does not define any parameters and contens will be used verbatim. this
* tag replaces comment parameters found in various tags
*
* @qtags.once
* @author ko5tik
* @version $Revision: 1.1 $
*/
public interface HibernateCommentTag extends DocletTag {
}
Index: HibernateUnionSubclassTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateUnionSubclassTag.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** HibernateUnionSubclassTag.java 24 Aug 2005 09:42:36 -0000 1.3
--- HibernateUnionSubclassTag.java 9 Sep 2006 13:16:05 -0000 1.4
***************
*** 14,17 ****
* @author Anatol Pomozov
*/
! public interface HibernateUnionSubclassTag extends BaseSubclassTag, Table,
Schema, Catalog, Subselect, Check, Comment {
}
\ No newline at end of file
--- 14,17 ----
* @author Anatol Pomozov
*/
! public interface HibernateUnionSubclassTag extends BaseSubclassTag, Table,
Schema, Catalog, Subselect, Check {
}
\ No newline at end of file
Index: HibernateJoinedSubclassTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateJoinedSubclassTag.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** HibernateJoinedSubclassTag.java 24 Aug 2005 09:42:36 -0000 1.14
--- HibernateJoinedSubclassTag.java 9 Sep 2006 13:16:05 -0000 1.15
***************
*** 13,16 ****
* @qtags.location class
*/
! public interface HibernateJoinedSubclassTag extends BaseSubclassTag, Table,
Check, Schema, Catalog, Subselect, Comment {
}
\ No newline at end of file
--- 13,16 ----
* @qtags.location class
*/
! public interface HibernateJoinedSubclassTag extends BaseSubclassTag, Table,
Check, Schema, Catalog, Subselect {
}
\ No newline at end of file
Index: HibernateArrayTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateArrayTag.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** HibernateArrayTag.java 24 Aug 2005 09:42:36 -0000 1.12
--- HibernateArrayTag.java 9 Sep 2006 13:16:05 -0000 1.13
***************
*** 6,10 ****
package org.xdoclet.plugin.hibernate.qtags;
! import org.xdoclet.plugin.hibernate.qtags.parameter.Comment;
/**
--- 6,10 ----
package org.xdoclet.plugin.hibernate.qtags;
!
/**
***************
*** 15,19 ****
* @qtags.once
*/
! public interface HibernateArrayTag extends InvertibleCollectionTag, Comment {
/**
* specifies element class ( implied by type )
--- 15,19 ----
* @qtags.once
*/
! public interface HibernateArrayTag extends InvertibleCollectionTag {
/**
* specifies element class ( implied by type )
Index: HibernateMapTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateMapTag.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** HibernateMapTag.java 24 Aug 2005 09:42:36 -0000 1.13
--- HibernateMapTag.java 9 Sep 2006 13:16:05 -0000 1.14
***************
*** 6,10 ****
package org.xdoclet.plugin.hibernate.qtags;
! import org.xdoclet.plugin.hibernate.qtags.parameter.Comment;
import org.xdoclet.plugin.hibernate.qtags.parameter.Lazy;
import org.xdoclet.plugin.hibernate.qtags.parameter.OrderBy;
--- 6,10 ----
package org.xdoclet.plugin.hibernate.qtags;
!
import org.xdoclet.plugin.hibernate.qtags.parameter.Lazy;
import org.xdoclet.plugin.hibernate.qtags.parameter.OrderBy;
***************
*** 17,20 ****
* @qtags.once
*/
! public interface HibernateMapTag extends SortedCollectionTag, Lazy, OrderBy,
Comment {
}
\ No newline at end of file
--- 17,20 ----
* @qtags.once
*/
! public interface HibernateMapTag extends SortedCollectionTag, Lazy, OrderBy {
}
\ No newline at end of file
Index: HibernatePrimitiveArrayTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernatePrimitiveArrayTag.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** HibernatePrimitiveArrayTag.java 24 Aug 2005 09:42:36 -0000 1.10
--- HibernatePrimitiveArrayTag.java 9 Sep 2006 13:16:05 -0000 1.11
***************
*** 6,10 ****
package org.xdoclet.plugin.hibernate.qtags;
- import org.xdoclet.plugin.hibernate.qtags.parameter.Comment;
/**
--- 6,9 ----
***************
*** 14,17 ****
* @qtags.location method
*/
! public interface HibernatePrimitiveArrayTag extends BaseCollectionTag,
Comment {
}
\ No newline at end of file
--- 13,16 ----
* @qtags.location method
*/
! public interface HibernatePrimitiveArrayTag extends BaseCollectionTag {
}
\ No newline at end of file
Index: HibernateSetTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateSetTag.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** HibernateSetTag.java 24 Aug 2005 09:42:36 -0000 1.11
--- HibernateSetTag.java 9 Sep 2006 13:16:05 -0000 1.12
***************
*** 6,10 ****
package org.xdoclet.plugin.hibernate.qtags;
! import org.xdoclet.plugin.hibernate.qtags.parameter.Comment;
import org.xdoclet.plugin.hibernate.qtags.parameter.Lazy;
import org.xdoclet.plugin.hibernate.qtags.parameter.OrderBy;
--- 6,10 ----
package org.xdoclet.plugin.hibernate.qtags;
!
import org.xdoclet.plugin.hibernate.qtags.parameter.Lazy;
import org.xdoclet.plugin.hibernate.qtags.parameter.OrderBy;
***************
*** 17,20 ****
* @qtags.once
*/
! public interface HibernateSetTag extends SortedCollectionTag, Lazy, OrderBy,
Comment {
}
\ No newline at end of file
--- 17,20 ----
* @qtags.once
*/
! public interface HibernateSetTag extends SortedCollectionTag, Lazy, OrderBy {
}
\ No newline at end of file
Index: HibernateColumnTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateColumnTag.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** HibernateColumnTag.java 24 Aug 2005 09:42:36 -0000 1.10
--- HibernateColumnTag.java 9 Sep 2006 13:16:05 -0000 1.11
***************
*** 18,22 ****
*/
public interface HibernateColumnTag extends
com.thoughtworks.qdox.model.DocletTag, Index, Length, NotNull, SqlType,
! Unique, Scale, Precision, Check, Comment {
/**
* The column name
--- 18,22 ----
*/
public interface HibernateColumnTag extends
com.thoughtworks.qdox.model.DocletTag, Index, Length, NotNull, SqlType,
! Unique, Scale, Precision, Check {
/**
* The column name
***************
*** 30,32 ****
--- 30,38 ----
*/
String getUniqueKey();
+
+ /**
+ * comment for this column
+ * @return
+ */
+ String getComment();
}
\ No newline at end of file
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
xdoclet-plugins-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-commits