Uses of Interface
org.objectweb.jotm.core.conflict.ConflictTable

Packages that use ConflictTable
org.objectweb.jotm.core.conflict Specifies JOTM 2 conflict management API 
org.objectweb.jotm.impl.core.conflict Provides some implementations of the org.objectweb.jotm.core.conflict interfaces 
 

Uses of ConflictTable in org.objectweb.jotm.core.conflict
 

Methods in org.objectweb.jotm.core.conflict with parameters of type ConflictTable
 void ConflictManager.addConflictTable(java.lang.Class cl, ConflictTable cTable)
          Add a new conflict table.
 void ConflictManager.addConflictTable(java.lang.Object obj, ConflictTable cTable)
          Add a new conflict table.
 void ConflictManager.removeConflictTable(java.lang.Class cl, ConflictTable cTable)
          Remove a conflict table associated with the given type.
 void ConflictManager.removeConflictTable(java.lang.Object obj, ConflictTable cTable)
          Remove a conflict table associated with the given object.
 

Uses of ConflictTable in org.objectweb.jotm.impl.core.conflict
 

Classes in org.objectweb.jotm.impl.core.conflict that implement ConflictTable
 class BasicConflictTable
          BasicConflictTable is an implementation of conflict table.
 

Constructors in org.objectweb.jotm.impl.core.conflict with parameters of type ConflictTable
TransactionalLock(ConflictTable table)
          Constructs transactional lock.
LockConversionTable(ConflictTable iConflictTable)
          Constructs a lock conversion table based on the given conflict table.
BasicLock(ConflictTable iTable)