Sets the modified value for the code in the front-most tab.
(boolean state)
| 757 | * Sets the modified value for the code in the front-most tab. |
| 758 | */ |
| 759 | public void setModified(boolean state) { |
| 760 | if (current.isModified() != state) { |
| 761 | current.setModified(state); |
| 762 | calcModified(); |
| 763 | } |
| 764 | } |
| 765 | |
| 766 | |
| 767 | protected void calcModified() { |
no test coverage detected