MCPcopy Index your code
hub / github.com/processing/processing / setModified

Method setModified

app/src/processing/app/Sketch.java:748–755  ·  view source on GitHub ↗

Sets the modified value for the code in the frontmost tab.

(boolean state)

Source from the content-addressed store, hash-verified

746 * Sets the modified value for the code in the frontmost tab.
747 */
748 public void setModified(boolean state) {
749 //System.out.println("setting modified to " + state);
750 //new Exception().printStackTrace(System.out);
751 if (current.isModified() != state) {
752 current.setModified(state);
753 calcModified();
754 }
755 }
756
757
758 protected void calcModified() {

Callers 15

handlePressedMethod · 0.95
addFileMethod · 0.45
checkFilesMethod · 0.45
actionPerformedMethod · 0.45
actionPerformedMethod · 0.45
actionPerformedMethod · 0.45
handleCutMethod · 0.45
handlePasteMethod · 0.45
handleAutoFormatMethod · 0.45
handleIndentOutdentMethod · 0.45

Calls 2

calcModifiedMethod · 0.95
isModifiedMethod · 0.45

Tested by

no test coverage detected