[jsword-svn]
common/java/swing/org/crosswire/common/swing/desktop/event s
jswordcvs at crosswire.org
jswordcvs at crosswire.org
Sun Nov 28 14:36:33 MST 2004
Update of /cvs/jsword/common/java/swing/org/crosswire/common/swing/desktop/event
In directory www.crosswire.org:/tmp/cvs-serv11368/java/swing/org/crosswire/common/swing/desktop/event
Modified Files:
ViewEvent.java TitleChangedEvent.java
Log Message:
intellij refactor - safe
Index: ViewEvent.java
===================================================================
RCS file: /cvs/jsword/common/java/swing/org/crosswire/common/swing/desktop/event/ViewEvent.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ViewEvent.java 8 Sep 2004 19:53:37 -0000 1.1
--- ViewEvent.java 28 Nov 2004 21:36:31 -0000 1.2
***************
*** 25,36 ****
* </font></td></tr></table>
* @see gnu.gpl.Licence
! * @author DM Smith [ dmsmith555 at yahoo dot com]
* @version $Id$
*/
public final class ViewEvent extends EventObject
{
! public ViewEvent(Component view)
{
super(view);
}
}
--- 25,44 ----
* </font></td></tr></table>
* @see gnu.gpl.Licence
! * @author DM Smith [dmsmith555 at yahoo dot com]
* @version $Id$
*/
public final class ViewEvent extends EventObject
{
! /**
! * Default ctor to set the event source
! */
! public ViewEvent(Component view)
{
super(view);
}
+
+ /**
+ * Serialization ID
+ */
+ private static final long serialVersionUID = 3258689927188590898L;
}
Index: TitleChangedEvent.java
===================================================================
RCS file: /cvs/jsword/common/java/swing/org/crosswire/common/swing/desktop/event/TitleChangedEvent.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TitleChangedEvent.java 8 Sep 2004 19:53:37 -0000 1.1
--- TitleChangedEvent.java 28 Nov 2004 21:36:31 -0000 1.2
***************
*** 1,3 ****
-
package org.crosswire.common.swing.desktop.event;
--- 1,2 ----
***************
*** 30,34 ****
public class TitleChangedEvent extends EventObject
{
! /**
*
*/
--- 29,33 ----
public class TitleChangedEvent extends EventObject
{
! /**
*
*/
***************
*** 39,42 ****
--- 38,44 ----
}
+ /**
+ * Accessor for the title
+ */
public String getTitle()
{
***************
*** 45,47 ****
--- 47,54 ----
private String title;
+
+ /**
+ * Serialization ID
+ */
+ private static final long serialVersionUID = 3256444685672526641L;
}
More information about the jsword-svn
mailing list