MCPcopy Index your code
hub / github.com/benfry/processing4 / getTweakedTabs

Method getTweakedTabs

java/src/processing/mode/java/JavaEditor.java:1915–1926  ·  view source on GitHub ↗
(List<List<Handle>> handles)

Source from the content-addressed store, hash-verified

1913
1914
1915 static private boolean[] getTweakedTabs(List<List<Handle>> handles) {
1916 boolean[] outgoing = new boolean[handles.size()];
1917
1918 for (int i = 0; i < handles.size(); i++) {
1919 for (Handle h : handles.get(i)) {
1920 if (h.valueChanged()) {
1921 outgoing[i] = true;
1922 }
1923 }
1924 }
1925 return outgoing;
1926 }
1927
1928
1929 protected void initBaseCode() {

Callers 1

stopTweakModeMethod · 0.95

Calls 3

valueChangedMethod · 0.80
getMethod · 0.65
sizeMethod · 0.45

Tested by

no test coverage detected