[Patchanim-commit] SF.net SVN: patchanim: [61] trunk/patchanim/src/com/mebigfatguy/patchanim/ gui
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2008-01-30 01:45:30
|
Revision: 61
http://patchanim.svn.sourceforge.net/patchanim/?rev=61&view=rev
Author: dbrosius
Date: 2008-01-29 17:45:33 -0800 (Tue, 29 Jan 2008)
Log Message:
-----------
Move listeners/event objects to separate package
Added Paths:
-----------
trunk/patchanim/src/com/mebigfatguy/patchanim/gui/events/DocumentChangedEvent.java
Removed Paths:
-------------
trunk/patchanim/src/com/mebigfatguy/patchanim/gui/DocumentChangedEvent.java
Deleted: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/DocumentChangedEvent.java
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/DocumentChangedEvent.java 2008-01-30 01:45:12 UTC (rev 60)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/DocumentChangedEvent.java 2008-01-30 01:45:33 UTC (rev 61)
@@ -1,38 +0,0 @@
-/*
- * patchanim - A bezier surface patch color blend gif builder
- * Copyright (C) 2008 Dave Brosius
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-package com.mebigfatguy.patchanim.gui;
-
-import java.util.EventObject;
-
-import com.mebigfatguy.patchanim.PatchAnimDocument;
-
-public class DocumentChangedEvent extends EventObject {
- private static final long serialVersionUID = 7694516648407911200L;
-
- private PatchAnimDocument document;
-
- public DocumentChangedEvent(Object src, PatchAnimDocument d) {
- super(src);
- document = d;
- }
-
- public PatchAnimDocument getDocument() {
- return document;
- }
-}
Copied: trunk/patchanim/src/com/mebigfatguy/patchanim/gui/events/DocumentChangedEvent.java (from rev 60, trunk/patchanim/src/com/mebigfatguy/patchanim/gui/DocumentChangedEvent.java)
===================================================================
--- trunk/patchanim/src/com/mebigfatguy/patchanim/gui/events/DocumentChangedEvent.java (rev 0)
+++ trunk/patchanim/src/com/mebigfatguy/patchanim/gui/events/DocumentChangedEvent.java 2008-01-30 01:45:33 UTC (rev 61)
@@ -0,0 +1,38 @@
+/*
+ * patchanim - A bezier surface patch color blend gif builder
+ * Copyright (C) 2008 Dave Brosius
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+package com.mebigfatguy.patchanim.gui;
+
+import java.util.EventObject;
+
+import com.mebigfatguy.patchanim.PatchAnimDocument;
+
+public class DocumentChangedEvent extends EventObject {
+ private static final long serialVersionUID = 7694516648407911200L;
+
+ private PatchAnimDocument document;
+
+ public DocumentChangedEvent(Object src, PatchAnimDocument d) {
+ super(src);
+ document = d;
+ }
+
+ public PatchAnimDocument getDocument() {
+ return document;
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|