diff options
Diffstat (limited to 'docs/teaching/exercises/figures')
-rw-r--r-- | docs/teaching/exercises/figures/Box.java | 4 | ||||
-rw-r--r-- | docs/teaching/exercises/figures/FigureElement.java | 6 | ||||
-rw-r--r-- | docs/teaching/exercises/figures/Group.java | 4 | ||||
-rw-r--r-- | docs/teaching/exercises/figures/Line.java | 4 | ||||
-rw-r--r-- | docs/teaching/exercises/figures/Point.java | 4 | ||||
-rw-r--r-- | docs/teaching/exercises/figures/ShapeFigureElement.java | 4 | ||||
-rw-r--r-- | docs/teaching/exercises/figures/SlothfulPoint.java | 4 | ||||
-rw-r--r-- | docs/teaching/exercises/figures/gui/FigurePanel.java | 4 | ||||
-rw-r--r-- | docs/teaching/exercises/figures/gui/LogAdapter.java | 4 | ||||
-rw-r--r-- | docs/teaching/exercises/figures/gui/Main.java | 4 |
10 files changed, 21 insertions, 21 deletions
diff --git a/docs/teaching/exercises/figures/Box.java b/docs/teaching/exercises/figures/Box.java index e47cd5290..2db991a21 100644 --- a/docs/teaching/exercises/figures/Box.java +++ b/docs/teaching/exercises/figures/Box.java @@ -2,9 +2,9 @@ * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available - * under the terms of the Eclipse Public License v1.0 + * under the terms of the Eclipse Public License v 2.0 * which accompanies this distribution and is available at - * http://www.eclipse.org/legal/epl-v10.html + * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt * * Contributors: * PARC initial implementation diff --git a/docs/teaching/exercises/figures/FigureElement.java b/docs/teaching/exercises/figures/FigureElement.java index 1bf136a83..ac588f94d 100644 --- a/docs/teaching/exercises/figures/FigureElement.java +++ b/docs/teaching/exercises/figures/FigureElement.java @@ -2,9 +2,9 @@ * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available - * under the terms of the Eclipse Public License v1.0 + * under the terms of the Eclipse Public License v 2.0 * which accompanies this distribution and is available at - * http://www.eclipse.org/legal/epl-v10.html + * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt * * Contributors: * PARC initial implementation @@ -17,7 +17,7 @@ import java.awt.*; import java.awt.geom.*; public interface FigureElement { - public static final Rectangle MAX_BOUNDS = + public static final Rectangle MAX_BOUNDS = new Rectangle(0, 0, 500, 500); public abstract void move(int dx, int dy); diff --git a/docs/teaching/exercises/figures/Group.java b/docs/teaching/exercises/figures/Group.java index b29625ce0..f8ec65556 100644 --- a/docs/teaching/exercises/figures/Group.java +++ b/docs/teaching/exercises/figures/Group.java @@ -2,9 +2,9 @@ * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available - * under the terms of the Eclipse Public License v1.0 + * under the terms of the Eclipse Public License v 2.0 * which accompanies this distribution and is available at - * http://www.eclipse.org/legal/epl-v10.html + * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt * * Contributors: * PARC initial implementation diff --git a/docs/teaching/exercises/figures/Line.java b/docs/teaching/exercises/figures/Line.java index 876f45f7a..fb3b86b65 100644 --- a/docs/teaching/exercises/figures/Line.java +++ b/docs/teaching/exercises/figures/Line.java @@ -2,9 +2,9 @@ * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available - * under the terms of the Eclipse Public License v1.0 + * under the terms of the Eclipse Public License v 2.0 * which accompanies this distribution and is available at - * http://www.eclipse.org/legal/epl-v10.html + * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt * * Contributors: * PARC initial implementation diff --git a/docs/teaching/exercises/figures/Point.java b/docs/teaching/exercises/figures/Point.java index c522f9a63..95bd63994 100644 --- a/docs/teaching/exercises/figures/Point.java +++ b/docs/teaching/exercises/figures/Point.java @@ -2,9 +2,9 @@ * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available - * under the terms of the Eclipse Public License v1.0 + * under the terms of the Eclipse Public License v 2.0 * which accompanies this distribution and is available at - * http://www.eclipse.org/legal/epl-v10.html + * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt * * Contributors: * PARC initial implementation diff --git a/docs/teaching/exercises/figures/ShapeFigureElement.java b/docs/teaching/exercises/figures/ShapeFigureElement.java index 36bec0fa6..8e7bd34c2 100644 --- a/docs/teaching/exercises/figures/ShapeFigureElement.java +++ b/docs/teaching/exercises/figures/ShapeFigureElement.java @@ -2,9 +2,9 @@ * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available - * under the terms of the Eclipse Public License v1.0 + * under the terms of the Eclipse Public License v 2.0 * which accompanies this distribution and is available at - * http://www.eclipse.org/legal/epl-v10.html + * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt * * Contributors: * PARC initial implementation diff --git a/docs/teaching/exercises/figures/SlothfulPoint.java b/docs/teaching/exercises/figures/SlothfulPoint.java index 2afb7acf9..89f80d700 100644 --- a/docs/teaching/exercises/figures/SlothfulPoint.java +++ b/docs/teaching/exercises/figures/SlothfulPoint.java @@ -2,9 +2,9 @@ * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available - * under the terms of the Eclipse Public License v1.0 + * under the terms of the Eclipse Public License v 2.0 * which accompanies this distribution and is available at - * http://www.eclipse.org/legal/epl-v10.html + * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt * * Contributors: * PARC initial implementation diff --git a/docs/teaching/exercises/figures/gui/FigurePanel.java b/docs/teaching/exercises/figures/gui/FigurePanel.java index adb5314ed..6b264f42a 100644 --- a/docs/teaching/exercises/figures/gui/FigurePanel.java +++ b/docs/teaching/exercises/figures/gui/FigurePanel.java @@ -2,9 +2,9 @@ * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available - * under the terms of the Eclipse Public License v1.0 + * under the terms of the Eclipse Public License v 2.0 * which accompanies this distribution and is available at - * http://www.eclipse.org/legal/epl-v10.html + * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt * * Contributors: * PARC initial implementation diff --git a/docs/teaching/exercises/figures/gui/LogAdapter.java b/docs/teaching/exercises/figures/gui/LogAdapter.java index 023b137e3..dbacd37ca 100644 --- a/docs/teaching/exercises/figures/gui/LogAdapter.java +++ b/docs/teaching/exercises/figures/gui/LogAdapter.java @@ -2,9 +2,9 @@ * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available - * under the terms of the Eclipse Public License v1.0 + * under the terms of the Eclipse Public License v 2.0 * which accompanies this distribution and is available at - * http://www.eclipse.org/legal/epl-v10.html + * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt * * Contributors: * PARC initial implementation diff --git a/docs/teaching/exercises/figures/gui/Main.java b/docs/teaching/exercises/figures/gui/Main.java index aa41ae928..23330ca8a 100644 --- a/docs/teaching/exercises/figures/gui/Main.java +++ b/docs/teaching/exercises/figures/gui/Main.java @@ -2,9 +2,9 @@ * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available - * under the terms of the Eclipse Public License v1.0 + * under the terms of the Eclipse Public License v 2.0 * which accompanies this distribution and is available at - * http://www.eclipse.org/legal/epl-v10.html + * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt * * Contributors: * PARC initial implementation |