From what I think I can see, javax.swing.text.DefaultStyledDocument inherits two methods:
final protected writeLock()
final protected writeUnlock()
I would like to make use of these methods. I cannot call them from another class because they are protected, and I cannot override them because they are final.
When would you use the same combination of final and protected?
I am also curious to know how one can gain control of the writeLock
--Glen
Memoria mihi benigna erit qui eam perscribam
final protected writeLock()
final protected writeUnlock()
I would like to make use of these methods. I cannot call them from another class because they are protected, and I cannot override them because they are final.
When would you use the same combination of final and protected?
I am also curious to know how one can gain control of the writeLock
--Glen
Memoria mihi benigna erit qui eam perscribam