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-serv20382/src/main/java/org/xdoclet/plugin/hibernate/qtags

Modified Files:
        BaseCollectionTag.java HibernateAnyTag.java 
        HibernateCompositeIdTag.java HibernateIdTag.java 
        HibernateKeyPropertyTag.java HibernateTimestampTag.java 
        HibernateVersionTag.java 
Log Message:
(XDP-68) Implemented correct support for 'access' property

Index: BaseCollectionTag.java
===================================================================
RCS file: 
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/BaseCollectionTag.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** BaseCollectionTag.java      6 May 2005 16:08:00 -0000       1.12
--- BaseCollectionTag.java      22 Jun 2005 15:54:04 -0000      1.13
***************
*** 14,17 ****
   */
  public interface BaseCollectionTag extends 
com.thoughtworks.qdox.model.DocletTag, OuterJoin, BatchSize, Schema, Table,
!     Where, Subselect, Catalog, Fetch, Persister, Check, Node, OptimisticLock, 
EmbedXml, CollectionType, Cascade {
  }
\ No newline at end of file
--- 14,17 ----
   */
  public interface BaseCollectionTag extends 
com.thoughtworks.qdox.model.DocletTag, OuterJoin, BatchSize, Schema, Table,
!     Where, Subselect, Catalog, Fetch, Persister, Check, Node, OptimisticLock, 
EmbedXml, CollectionType, Cascade, Access {
  }
\ No newline at end of file

Index: HibernateCompositeIdTag.java
===================================================================
RCS file: 
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateCompositeIdTag.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** HibernateCompositeIdTag.java        26 Apr 2005 07:00:10 -0000      1.4
--- HibernateCompositeIdTag.java        22 Jun 2005 15:54:04 -0000      1.5
***************
*** 6,9 ****
--- 6,10 ----
  package org.xdoclet.plugin.hibernate.qtags;
  
+ import org.xdoclet.plugin.hibernate.qtags.parameter.Access;
  import org.xdoclet.plugin.hibernate.qtags.parameter.UnsavedValue;
  
***************
*** 16,19 ****
   * @qtags.location field
   */
! public interface HibernateCompositeIdTag extends 
com.thoughtworks.qdox.model.DocletTag, UnsavedValue {
  }
\ No newline at end of file
--- 17,20 ----
   * @qtags.location field
   */
! public interface HibernateCompositeIdTag extends 
com.thoughtworks.qdox.model.DocletTag, UnsavedValue, Access {
  }
\ 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.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** HibernateAnyTag.java        26 Apr 2005 07:00:09 -0000      1.4
--- HibernateAnyTag.java        22 Jun 2005 15:54:04 -0000      1.5
***************
*** 21,25 ****
   */
  public interface HibernateAnyTag extends 
com.thoughtworks.qdox.model.DocletTag, Insert, Update, Node, Lazy, Index, 
IdType,
!     MetaType, Cascade {
      /**
       * Specifies that updates to this property do or do not require 
acquisition of the optimistic lock.
--- 21,25 ----
   */
  public interface HibernateAnyTag extends 
com.thoughtworks.qdox.model.DocletTag, Insert, Update, Node, Lazy, Index, 
IdType,
!     MetaType, Cascade, Access {
      /**
       * Specifies that updates to this property do or do not require 
acquisition of the optimistic lock.

Index: HibernateVersionTag.java
===================================================================
RCS file: 
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateVersionTag.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** HibernateVersionTag.java    26 Apr 2005 07:00:10 -0000      1.9
--- HibernateVersionTag.java    22 Jun 2005 15:54:04 -0000      1.10
***************
*** 6,9 ****
--- 6,10 ----
  package org.xdoclet.plugin.hibernate.qtags;
  
+ import org.xdoclet.plugin.hibernate.qtags.parameter.Access;
  import org.xdoclet.plugin.hibernate.qtags.parameter.Column;
  import org.xdoclet.plugin.hibernate.qtags.parameter.Type;
***************
*** 16,20 ****
   * @qtags.location field
   */
! public interface HibernateVersionTag extends 
com.thoughtworks.qdox.model.DocletTag, Column, Type {
      /**
       * A version property value that indicates that an instance is newly 
instantiated (unsaved), distinguishing
--- 17,21 ----
   * @qtags.location field
   */
! public interface HibernateVersionTag extends 
com.thoughtworks.qdox.model.DocletTag, Column, Type, Access {
      /**
       * A version property value that indicates that an instance is newly 
instantiated (unsaved), distinguishing

Index: HibernateIdTag.java
===================================================================
RCS file: 
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateIdTag.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** HibernateIdTag.java 17 May 2005 13:42:39 -0000      1.12
--- HibernateIdTag.java 22 Jun 2005 15:54:04 -0000      1.13
***************
*** 17,21 ****
   */
  public interface HibernateIdTag extends 
com.thoughtworks.qdox.model.DocletTag, Column, Length, Type, UnsavedValue, Node,
!     Name {
      /**
       * The key generator class. Hibernate recognizes standart generator
--- 17,21 ----
   */
  public interface HibernateIdTag extends 
com.thoughtworks.qdox.model.DocletTag, Column, Length, Type, UnsavedValue, Node,
!     Name, Access {
      /**
       * The key generator class. Hibernate recognizes standart generator

Index: HibernateTimestampTag.java
===================================================================
RCS file: 
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateTimestampTag.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** HibernateTimestampTag.java  26 Apr 2005 07:00:10 -0000      1.8
--- HibernateTimestampTag.java  22 Jun 2005 15:54:04 -0000      1.9
***************
*** 6,9 ****
--- 6,10 ----
  package org.xdoclet.plugin.hibernate.qtags;
  
+ import org.xdoclet.plugin.hibernate.qtags.parameter.Access;
  import org.xdoclet.plugin.hibernate.qtags.parameter.Column;
  import org.xdoclet.plugin.hibernate.qtags.parameter.Node;
***************
*** 18,22 ****
   * @qtags.once
   */
! public interface HibernateTimestampTag extends 
com.thoughtworks.qdox.model.DocletTag, Column, Node {
      /**
       * A version property value that indicates that an instance is newly 
instantiated (unsaved), distinguishing
--- 19,23 ----
   * @qtags.once
   */
! public interface HibernateTimestampTag extends 
com.thoughtworks.qdox.model.DocletTag, Column, Node, Access {
      /**
       * A version property value that indicates that an instance is newly 
instantiated (unsaved), distinguishing

Index: HibernateKeyPropertyTag.java
===================================================================
RCS file: 
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-hibernate/src/main/java/org/xdoclet/plugin/hibernate/qtags/HibernateKeyPropertyTag.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** HibernateKeyPropertyTag.java        26 Apr 2005 07:00:10 -0000      1.3
--- HibernateKeyPropertyTag.java        22 Jun 2005 15:54:04 -0000      1.4
***************
*** 6,13 ****
  package org.xdoclet.plugin.hibernate.qtags;
  
! import org.xdoclet.plugin.hibernate.qtags.parameter.Column;
! import org.xdoclet.plugin.hibernate.qtags.parameter.Length;
! import org.xdoclet.plugin.hibernate.qtags.parameter.Position;
! import org.xdoclet.plugin.hibernate.qtags.parameter.Type;
  
  /**
--- 6,10 ----
  package org.xdoclet.plugin.hibernate.qtags;
  
! import org.xdoclet.plugin.hibernate.qtags.parameter.*;
  
  /**
***************
*** 16,19 ****
   * @qtags.once
   */
! public interface HibernateKeyPropertyTag extends 
com.thoughtworks.qdox.model.DocletTag, Type, Column, Length, Position {
  }
\ No newline at end of file
--- 13,17 ----
   * @qtags.once
   */
! public interface HibernateKeyPropertyTag extends 
com.thoughtworks.qdox.model.DocletTag, Type, Column, Length, Position,
!     Access {
  }
\ No newline at end of file



-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
_______________________________________________
xdoclet-plugins-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-commits

Reply via email to