[jboss-cvs] JBossCache/examples/PojoCache/sensor/article ...

Ben Wang bwang at jboss.com
Tue Nov 21 01:08:24 EST 2006


  User: bwang   
  Date: 06/11/21 01:08:24

  Modified:    examples/PojoCache/sensor/article  pojocache.html
  Log:
  JBCACHE-868 Renaming PojoCache annotation.
  
  Revision  Changes    Path
  1.3       +6 -6      JBossCache/examples/PojoCache/sensor/article/pojocache.html
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: pojocache.html
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/examples/PojoCache/sensor/article/pojocache.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- pojocache.html	27 Apr 2006 06:47:38 -0000	1.2
  +++ pojocache.html	21 Nov 2006 06:08:24 -0000	1.3
  @@ -266,7 +266,7 @@
   
      <pre><code>
   /**
  -* <b>@@org.jboss.cache.aop.InstanceOfAopMarker</b>
  +* <b>@@org.jboss.cache.pojo.annotation.Replicable</b>
   */
   public interface PropagationManager {
     public void setRootNode(String rdn);
  @@ -288,7 +288,7 @@
   <code>
   /**
   *
  -* <b>@@org.jboss.cache.aop.InstanceOfAopMarker</b>
  +* <b>@@org.jboss.cache.pojo.annotation.Replicable</b>
   */
   public interface Node {
     public void addChildNode(Node child);
  @@ -317,7 +317,7 @@
   
   <code>
   /**
  -* <b>@@org.jboss.cache.aop.InstanceOfAopMarker</b>
  +* <b>@@org.jboss.cache.pojo.annotation.Replicable</b>
   */
   public interface StateItem {
     public long getItemId();
  @@ -336,12 +336,12 @@
   </pre>
   </p>
   
  -<p>Note the annotation inside the JavaDoc -- <code>@@org.jboss.cache.aop.InstanceOfAopMarker</code> is a JBoss POJO Cache
  +<p>Note the annotation inside the JavaDoc -- <code>@@org.jboss.cache.pojo.annotation.Replicable</code> is a JBoss PojoCache
      annotation that essentially declares all instances of this interface will be instrumented (so there is no need to
      annotate individual classes). If you want to annotate a specific class (without propagating to its sub-class), you
  -   can also use the <code>@@org.jboss.cache.aop.AopMarker</code> annotation.</p>
  +   can also use the <code>@@org.jboss.cache.pojo.annotation.Replicable</code> annotation.</p>
   
  -<p>After the interfaces are annotated, we then use a JDK 1.4 style JBoss Aop annotation precompiler, <code>annoc</code>, and an
  +<p>After the interfaces are annotated, we then use an
      aop precompiler, <code>aopc</code>, to perform compile time instrumentation. Once these steps are done, the
      instrumentation process is complete. And we are ready to run the example.</p>
   
  
  
  



More information about the jboss-cvs-commits mailing list