aboutsummaryrefslogtreecommitdiffstats
path: root/docs/teaching/demos/figures/src-fresh/figures/Canvas.java
diff options
context:
space:
mode:
Diffstat (limited to 'docs/teaching/demos/figures/src-fresh/figures/Canvas.java')
-rw-r--r--docs/teaching/demos/figures/src-fresh/figures/Canvas.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/teaching/demos/figures/src-fresh/figures/Canvas.java b/docs/teaching/demos/figures/src-fresh/figures/Canvas.java
new file mode 100644
index 000000000..ef849a5d5
--- /dev/null
+++ b/docs/teaching/demos/figures/src-fresh/figures/Canvas.java
@@ -0,0 +1,15 @@
+/*
+Copyright (c) 2002 Palo Alto Research Center Incorporated. All Rights Reserved.
+ */
+
+package figures;
+
+import figures.support.Log;
+
+public class Canvas {
+ public static void updateHistory() { }
+
+ public static void updateHistory(FigureElement fe) {
+ System.out.println("> updating history for: " + fe);
+ }
+}