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

Method propertyChange

app/src/processing/app/ui/WebFrame.java:60–65  ·  view source on GitHub ↗
(PropertyChangeEvent evt)

Source from the content-addressed store, hash-verified

58 // Title cannot be set until the page has loaded
59 editorPane.addPropertyChangeListener("page", new PropertyChangeListener() {
60 public void propertyChange(PropertyChangeEvent evt) {
61 Object title = editorPane.getDocument().getProperty("title");
62 if (title instanceof String) {
63 setTitle((String) title);
64 }
65 }
66 });
67
68 editorPane.setPage(fileUrl);

Callers

nothing calls this directly

Calls 3

setTitleMethod · 0.65
getDocumentMethod · 0.45
getPreferredSizeMethod · 0.45

Tested by

no test coverage detected