Check the lock state and throw an exception if locked. @exception IllegalStateException if this set is currently locked
()
| 129 | * @exception IllegalStateException if this set is currently locked |
| 130 | */ |
| 131 | private void checkLocked() { |
| 132 | if (locked) { |
| 133 | throw new IllegalStateException(sm.getString("resourceSet.locked")); |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | |
| 138 | /** |