[Jsxe-cvs] SF.net SVN: jsxe: [1113] trunk/jsxe/src/net/sourceforge/jsxe/msg
Status: Inactive
Brought to you by:
ian_lewis
From: <ian...@us...> - 2006-08-08 00:09:29
|
Revision: 1113 Author: ian_lewis Date: 2006-08-07 17:09:14 -0700 (Mon, 07 Aug 2006) ViewCVS: http://svn.sourceforge.net/jsxe/?rev=1113&view=rev Log Message: ----------- Undo and redo events Added Paths: ----------- trunk/jsxe/src/net/sourceforge/jsxe/msg/RedoEvent.java trunk/jsxe/src/net/sourceforge/jsxe/msg/UndoEvent.java Added: trunk/jsxe/src/net/sourceforge/jsxe/msg/RedoEvent.java =================================================================== --- trunk/jsxe/src/net/sourceforge/jsxe/msg/RedoEvent.java (rev 0) +++ trunk/jsxe/src/net/sourceforge/jsxe/msg/RedoEvent.java 2006-08-08 00:09:14 UTC (rev 1113) @@ -0,0 +1,48 @@ +/* +RedoEvent.java +:tabSize=4:indentSize=4:noTabs=true: +:folding=explicit:collapseFolds=1: + +Copyright (C) 2006 Ian Lewis (Ian...@me...) + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program 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 General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +Optionally, you may find a copy of the GNU General Public License +from http://www.fsf.org/copyleft/gpl.txt +*/ + +package net.sourceforge.jsxe.msg; + +import net.sourceforge.jsxe.*; +import net.sourceforge.jsxe.dom.XMLDocument; + +/** + * Message send when a redo is performed on an XMLDocument. + * + * @author Ian Lewis (<a href="mailto:Ian...@me...">Ian...@me...</a>) + * @version $Id$ + * + * @since jsXe 0.5 pre3 + */ +public class RedoEvent extends EBMessage { + + //{{{ RedoEvent constructor + /** + * Creates a new RedoEvent. + */ + public RedoEvent(XMLDocument document) { + super(document); + } //}}} + +} Property changes on: trunk/jsxe/src/net/sourceforge/jsxe/msg/RedoEvent.java ___________________________________________________________________ Name: svn:executable + * Added: trunk/jsxe/src/net/sourceforge/jsxe/msg/UndoEvent.java =================================================================== --- trunk/jsxe/src/net/sourceforge/jsxe/msg/UndoEvent.java (rev 0) +++ trunk/jsxe/src/net/sourceforge/jsxe/msg/UndoEvent.java 2006-08-08 00:09:14 UTC (rev 1113) @@ -0,0 +1,48 @@ +/* +UndoEvent.java +:tabSize=4:indentSize=4:noTabs=true: +:folding=explicit:collapseFolds=1: + +Copyright (C) 2006 Ian Lewis (Ian...@me...) + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program 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 General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +Optionally, you may find a copy of the GNU General Public License +from http://www.fsf.org/copyleft/gpl.txt +*/ + +package net.sourceforge.jsxe.msg; + +import net.sourceforge.jsxe.*; +import net.sourceforge.jsxe.dom.XMLDocument; + +/** + * Message send when an undo is performed on an XMLDocument. + * + * @author Ian Lewis (<a href="mailto:Ian...@me...">Ian...@me...</a>) + * @version $Id$ + * + * @since jsXe 0.5 pre3 + */ +public class UndoEvent extends EBMessage { + + //{{{ UndoEvent constructor + /** + * Creates a new UndoEvent. + */ + public UndoEvent(XMLDocument document) { + super(document); + } //}}} + +} Property changes on: trunk/jsxe/src/net/sourceforge/jsxe/msg/UndoEvent.java ___________________________________________________________________ Name: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |