Package org.jboss.ejb.plugins.cmp.jdbc

Examples of org.jboss.ejb.plugins.cmp.jdbc.RelationData


      public void addRelation(JDBCCMRFieldBridge field,
                              Object id,
                              JDBCCMRFieldBridge relatedField,
                              Object relatedId)
      {
         final RelationData local = getRelationData();
         local.addRelation(field, id, relatedField, relatedId);
      }
View Full Code Here


      public void removeRelation(JDBCCMRFieldBridge field,
                                 Object id,
                                 JDBCCMRFieldBridge relatedField,
                                 Object relatedId)
      {
         RelationData local = getRelationData();
         local.removeRelation(field, id, relatedField, relatedId);
      }
View Full Code Here

         local.removeRelation(field, id, relatedField, relatedId);
      }

      public boolean isDirty()
      {
         RelationData local = getRelationData();
         return local.isDirty();
      }
View Full Code Here

         return local.isDirty();
      }

      public RelationData getRelationData()
      {
         final RelationData local = (RelationData) relationData.get();
         return local;
      }
View Full Code Here

/* 2298 */       this.rightField = rightField;
/*      */     }
/*      */
/*      */     public void addRelation(JDBCCMRFieldBridge field, Object id, JDBCCMRFieldBridge relatedField, Object relatedId)
/*      */     {
/* 2306 */       RelationData local = getRelationData();
/* 2307 */       local.addRelation(field, id, relatedField, relatedId);
/*      */     }
View Full Code Here

/* 2307 */       local.addRelation(field, id, relatedField, relatedId);
/*      */     }
/*      */
/*      */     public void removeRelation(JDBCCMRFieldBridge field, Object id, JDBCCMRFieldBridge relatedField, Object relatedId)
/*      */     {
/* 2315 */       RelationData local = getRelationData();
/* 2316 */       local.removeRelation(field, id, relatedField, relatedId);
/*      */     }
View Full Code Here

/* 2316 */       local.removeRelation(field, id, relatedField, relatedId);
/*      */     }
/*      */
/*      */     public boolean isDirty()
/*      */     {
/* 2321 */       RelationData local = getRelationData();
/* 2322 */       return local.isDirty();
/*      */     }
View Full Code Here

/* 2322 */       return local.isDirty();
/*      */     }
/*      */
/*      */     public RelationData getRelationData()
/*      */     {
/* 2327 */       RelationData local = (RelationData)this.relationData.get();
/* 2328 */       return local;
/*      */     }
View Full Code Here

TOP

Related Classes of org.jboss.ejb.plugins.cmp.jdbc.RelationData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.