Update of
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags
In directory
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18409/src/main/java/org/xdoclet/plugin/hibernate/qtags
Modified Files:
HibernateAnyTag.java HibernateArrayTag.java
HibernateBagTag.java HibernateClassTag.java
HibernateColumnTag.java HibernateCompositeElementTag.java
HibernateDiscriminatorColumnTag.java HibernateElementTag.java
HibernateIdbagTag.java HibernateJoinTag.java
HibernateJoinedSubclassTag.java HibernateKeyManyToOneTag.java
HibernateListTag.java HibernateManyToAnyTag.java
HibernateManyToManyTag.java HibernateMapTag.java
HibernateOneToManyTag.java HibernateParentTag.java
HibernatePrimitiveArrayTag.java HibernateQueryTag.java
HibernateSetTag.java HibernateSqlQueryTag.java
HibernateTypedefParamTag.java HibernateUnionSubclassTag.java
Log Message:
(XDP-92) Added comment support. Thanks to Ranieri J D Severiano
Index: HibernateOneToManyTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateOneToManyTag.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** HibernateOneToManyTag.java 26 May 2005 06:45:47 -0000 1.8
--- HibernateOneToManyTag.java 24 Aug 2005 09:42:36 -0000 1.9
***************
*** 1,4 ****
/*
! * Copyright (c) 2003
* XDoclet Team
* All rights reserved.
--- 1,4 ----
/*
! * Copyright (c) 2003-2005
* XDoclet Team
* All rights reserved.
Index: HibernateManyToManyTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateManyToManyTag.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** HibernateManyToManyTag.java 25 May 2005 08:01:48 -0000 1.7
--- HibernateManyToManyTag.java 24 Aug 2005 09:42:36 -0000 1.8
***************
*** 1,4 ****
/*
! * Copyright (c) 2003
* XDoclet Team
* All rights reserved.
--- 1,4 ----
/*
! * Copyright (c) 2003-2005
* XDoclet Team
* All rights reserved.
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.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** HibernateJoinTag.java 10 Aug 2005 15:42:04 -0000 1.2
--- HibernateJoinTag.java 24 Aug 2005 09:42:36 -0000 1.3
***************
*** 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
--- 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
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.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** HibernateJoinedSubclassTag.java 10 Aug 2005 15:42:04 -0000 1.13
--- HibernateJoinedSubclassTag.java 24 Aug 2005 09:42:36 -0000 1.14
***************
*** 13,16 ****
* @qtags.location class
*/
! public interface HibernateJoinedSubclassTag extends BaseSubclassTag, Table,
Check, Schema, Catalog, Subselect {
}
\ No newline at end of file
--- 13,16 ----
* @qtags.location class
*/
! public interface HibernateJoinedSubclassTag extends BaseSubclassTag, Table,
Check, Schema, Catalog, Subselect, Comment {
}
\ 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.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** HibernatePrimitiveArrayTag.java 10 Aug 2005 15:42:04 -0000 1.9
--- HibernatePrimitiveArrayTag.java 24 Aug 2005 09:42:36 -0000 1.10
***************
*** 6,9 ****
--- 6,11 ----
package org.xdoclet.plugin.hibernate.qtags;
+ import org.xdoclet.plugin.hibernate.qtags.parameter.Comment;
+
/**
* Defines a primitive-array
***************
*** 12,15 ****
* @qtags.location method
*/
! public interface HibernatePrimitiveArrayTag extends BaseCollectionTag {
}
\ No newline at end of file
--- 14,17 ----
* @qtags.location method
*/
! public interface HibernatePrimitiveArrayTag extends BaseCollectionTag,
Comment {
}
\ No newline at end of file
Index: HibernateElementTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateElementTag.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** HibernateElementTag.java 20 Aug 2005 11:49:28 -0000 1.9
--- HibernateElementTag.java 24 Aug 2005 09:42:36 -0000 1.10
***************
*** 19,23 ****
* @qtags.location field
*/
! public interface HibernateElementTag extends
com.thoughtworks.qdox.model.DocletTag, Length, NotNull, Unique, Column, Formula{
/**
* The Hibernate type
--- 19,24 ----
* @qtags.location field
*/
! public interface HibernateElementTag extends
com.thoughtworks.qdox.model.DocletTag, Length, NotNull, Unique, Column,
! Formula {
/**
* The Hibernate type
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.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** HibernateListTag.java 10 Aug 2005 15:42:04 -0000 1.10
--- HibernateListTag.java 24 Aug 2005 09:42:36 -0000 1.11
***************
*** 6,9 ****
--- 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;
***************
*** 16,19 ****
* @qtags.once
*/
! public interface HibernateListTag extends InvertibleCollectionTag, Lazy,
OrderBy {
}
\ No newline at end of file
--- 17,20 ----
* @qtags.once
*/
! public interface HibernateListTag extends InvertibleCollectionTag, Lazy,
OrderBy, Comment {
}
\ 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.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** HibernateClassTag.java 10 Aug 2005 15:42:04 -0000 1.15
--- HibernateClassTag.java 24 Aug 2005 09:42:36 -0000 1.16
***************
*** 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
--- 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
Index: HibernateQueryTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateQueryTag.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** HibernateQueryTag.java 17 May 2005 13:42:39 -0000 1.8
--- HibernateQueryTag.java 24 Aug 2005 09:42:36 -0000 1.9
***************
*** 1,4 ****
/*
! * Copyright (c) 2003
* XDoclet Team
* All rights reserved.
--- 1,4 ----
/*
! * Copyright (c) 2003-2005
* XDoclet Team
* All rights reserved.
Index: HibernateTypedefParamTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateTypedefParamTag.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** HibernateTypedefParamTag.java 26 May 2005 06:45:47 -0000 1.2
--- HibernateTypedefParamTag.java 24 Aug 2005 09:42:36 -0000 1.3
***************
*** 1,4 ****
/*
! * Copyright (c) 2003
* XDoclet Team
* All rights reserved.
--- 1,4 ----
/*
! * Copyright (c) 2003-2005
* XDoclet Team
* All rights reserved.
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.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** HibernateColumnTag.java 10 Aug 2005 15:42:04 -0000 1.9
--- HibernateColumnTag.java 24 Aug 2005 09:42:36 -0000 1.10
***************
*** 18,22 ****
*/
public interface HibernateColumnTag extends
com.thoughtworks.qdox.model.DocletTag, Index, Length, NotNull, SqlType,
! Unique, Scale, Precision, Check {
/**
* The column name
--- 18,22 ----
*/
public interface HibernateColumnTag extends
com.thoughtworks.qdox.model.DocletTag, Index, Length, NotNull, SqlType,
! Unique, Scale, Precision, Check, Comment {
/**
* The column name
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.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** HibernateSetTag.java 10 Aug 2005 15:42:04 -0000 1.10
--- HibernateSetTag.java 24 Aug 2005 09:42:36 -0000 1.11
***************
*** 6,9 ****
--- 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;
***************
*** 16,19 ****
* @qtags.once
*/
! public interface HibernateSetTag extends SortedCollectionTag, Lazy, OrderBy {
}
\ No newline at end of file
--- 17,20 ----
* @qtags.once
*/
! public interface HibernateSetTag extends SortedCollectionTag, Lazy, OrderBy,
Comment {
}
\ 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.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** HibernateBagTag.java 10 Aug 2005 15:42:04 -0000 1.14
--- HibernateBagTag.java 24 Aug 2005 09:42:36 -0000 1.15
***************
*** 6,9 ****
--- 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;
***************
*** 17,20 ****
* @qtags.once
*/
! public interface HibernateBagTag extends InvertibleCollectionTag, Lazy,
OrderBy {
}
\ No newline at end of file
--- 18,21 ----
* @qtags.once
*/
! public interface HibernateBagTag extends InvertibleCollectionTag, Lazy,
OrderBy, Comment {
}
\ No newline at end of file
Index: HibernateSqlQueryTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateSqlQueryTag.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** HibernateSqlQueryTag.java 17 May 2005 13:42:39 -0000 1.2
--- HibernateSqlQueryTag.java 24 Aug 2005 09:42:36 -0000 1.3
***************
*** 1,4 ****
/*
! * Copyright (c) 2003
* XDoclet Team
* All rights reserved.
--- 1,4 ----
/*
! * Copyright (c) 2003-2005
* XDoclet Team
* All rights reserved.
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.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** HibernateUnionSubclassTag.java 10 Aug 2005 15:42:04 -0000 1.2
--- HibernateUnionSubclassTag.java 24 Aug 2005 09:42:36 -0000 1.3
***************
*** 14,17 ****
* @author Anatol Pomozov
*/
! public interface HibernateUnionSubclassTag extends BaseSubclassTag, Table,
Schema, Catalog, Subselect, Check {
}
\ No newline at end of file
--- 14,17 ----
* @author Anatol Pomozov
*/
! public interface HibernateUnionSubclassTag extends BaseSubclassTag, Table,
Schema, Catalog, Subselect, Check, Comment {
}
\ No newline at end of file
Index: HibernateKeyManyToOneTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateKeyManyToOneTag.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** HibernateKeyManyToOneTag.java 18 May 2005 15:38:33 -0000 1.2
--- HibernateKeyManyToOneTag.java 24 Aug 2005 09:42:36 -0000 1.3
***************
*** 1,4 ****
/*
! * Copyright (c) 2003
* XDoclet Team
* All rights reserved.
--- 1,4 ----
/*
! * Copyright (c) 2003-2005
* XDoclet Team
* All rights reserved.
Index: HibernateCompositeElementTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateCompositeElementTag.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** HibernateCompositeElementTag.java 13 May 2005 07:50:45 -0000 1.8
--- HibernateCompositeElementTag.java 24 Aug 2005 09:42:36 -0000 1.9
***************
*** 1,4 ****
/*
! * Copyright (c) 2003
* XDoclet Team
* All rights reserved.
--- 1,4 ----
/*
! * Copyright (c) 2003-2005
* XDoclet Team
* All rights reserved.
Index: HibernateParentTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateParentTag.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** HibernateParentTag.java 13 May 2005 07:50:45 -0000 1.1
--- HibernateParentTag.java 24 Aug 2005 09:42:36 -0000 1.2
***************
*** 1,4 ****
/*
! * Copyright (c) 2003
* XDoclet Team
* All rights reserved.
--- 1,4 ----
/*
! * Copyright (c) 2003-2005
* XDoclet Team
* All rights reserved.
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.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** HibernateArrayTag.java 10 Aug 2005 15:42:04 -0000 1.11
--- HibernateArrayTag.java 24 Aug 2005 09:42:36 -0000 1.12
***************
*** 6,9 ****
--- 6,11 ----
package org.xdoclet.plugin.hibernate.qtags;
+ import org.xdoclet.plugin.hibernate.qtags.parameter.Comment;
+
/**
* defines array collection. @hibernate.key , @hibernate.index and collection
element shall be specified
***************
*** 13,17 ****
* @qtags.once
*/
! public interface HibernateArrayTag extends InvertibleCollectionTag {
/**
* specifies element class ( implied by type )
--- 15,19 ----
* @qtags.once
*/
! public interface HibernateArrayTag extends InvertibleCollectionTag, Comment {
/**
* 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.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** HibernateMapTag.java 10 Aug 2005 15:42:04 -0000 1.12
--- HibernateMapTag.java 24 Aug 2005 09:42:36 -0000 1.13
***************
*** 6,9 ****
--- 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;
***************
*** 16,19 ****
* @qtags.once
*/
! public interface HibernateMapTag extends SortedCollectionTag, Lazy, OrderBy {
}
\ No newline at end of file
--- 17,20 ----
* @qtags.once
*/
! public interface HibernateMapTag extends SortedCollectionTag, Lazy, OrderBy,
Comment {
}
\ No newline at end of file
Index: HibernateDiscriminatorColumnTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateDiscriminatorColumnTag.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** HibernateDiscriminatorColumnTag.java 17 May 2005 12:42:53 -0000
1.3
--- HibernateDiscriminatorColumnTag.java 24 Aug 2005 09:42:36 -0000
1.4
***************
*** 1,4 ****
/*
! * Copyright (c) 2003
* XDoclet Team
* All rights reserved.
--- 1,4 ----
/*
! * Copyright (c) 2003-2005
* XDoclet Team
* All rights reserved.
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.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** HibernateIdbagTag.java 10 Aug 2005 15:42:04 -0000 1.2
--- HibernateIdbagTag.java 24 Aug 2005 09:42:36 -0000 1.3
***************
*** 7,10 ****
--- 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;
***************
*** 15,18 ****
* @author Anatol Pomozov
*/
! public interface HibernateIdbagTag extends BaseCollectionTag, Lazy, Cascade,
OrderBy {
}
\ No newline at end of file
--- 16,19 ----
* @author Anatol Pomozov
*/
! public interface HibernateIdbagTag extends BaseCollectionTag, Lazy, Cascade,
OrderBy, Comment {
}
\ No newline at end of file
Index: HibernateAnyTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateAnyTag.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** HibernateAnyTag.java 22 Jun 2005 15:54:04 -0000 1.5
--- HibernateAnyTag.java 24 Aug 2005 09:42:36 -0000 1.6
***************
*** 1,4 ****
/*
! * Copyright (c) 2003
* XDoclet Team
* All rights reserved.
--- 1,4 ----
/*
! * Copyright (c) 2003-2005
* XDoclet Team
* All rights reserved.
Index: HibernateManyToAnyTag.java
===================================================================
RCS file:
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateManyToAnyTag.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** HibernateManyToAnyTag.java 17 May 2005 12:42:53 -0000 1.1
--- HibernateManyToAnyTag.java 24 Aug 2005 09:42:36 -0000 1.2
***************
*** 1,4 ****
/*
! * Copyright (c) 2003
* XDoclet Team
* All rights reserved.
--- 1,4 ----
/*
! * Copyright (c) 2003-2005
* XDoclet Team
* All rights reserved.
-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
xdoclet-plugins-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-commits