I have a ReentrantReadWriteLock. The ReentrantReadWriteLock contains ReadLock and WriteLock as subclasses.
I want to extend this ReadLock and WriteLock by my custom classes as
DummyReadLock and DummyWriteLock.
Then I must be able to do something like below
final Lock lock = new DummyReadLock.readLock();
or
final Lock lock = new DummyWriteLock.writeLock();
Is it possible to achieve this.?
DummyReadLockis extendingReentrantReadWriteLock.ReadLock, then why does it need areadLock()method? I think what you want to do is create aDummyReadWriteLockclass that extendsReentrantReadWriteLock, as well as aDummyReadWriteLock.ReadLockthat extendsReentrantReadWriteLock.ReadLock(and similarly for the write-lock). Also, a point of terminology: those are "nested classes", not "subclasses". "Subclasses" refers to classes that extend other classes using inheritance. – ruakh Dec 5 '11 at 21:51