From 8ae434c63e6382a8cb850551d947285f5fcb3c25 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 4 Aug 2008 20:44:54 +0000 Subject: restructured stuff --- sources/events/VSAbstractEvent.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sources/events/VSAbstractEvent.java') diff --git a/sources/events/VSAbstractEvent.java b/sources/events/VSAbstractEvent.java index 510169b..d2c1352 100644 --- a/sources/events/VSAbstractEvent.java +++ b/sources/events/VSAbstractEvent.java @@ -25,7 +25,7 @@ package events; import java.io.*; -import core.VSProcess; +import core.VSInternalProcess; import exceptions.*; import prefs.VSPrefs; import serialize.*; @@ -46,7 +46,7 @@ abstract public class VSAbstractEvent extends VSPrefs { public VSPrefs prefs; /** The process. */ - public VSProcess process; + public VSInternalProcess process; /** The event shortname. */ private String eventShortname; @@ -60,7 +60,7 @@ abstract public class VSAbstractEvent extends VSPrefs { * @param theProcess The new process * @return The copy */ - final public VSAbstractEvent getCopy(VSProcess theProcess) + final public VSAbstractEvent getCopy(VSInternalProcess theProcess) throws VSEventNotCopyableException { if (theProcess == null) @@ -94,7 +94,7 @@ abstract public class VSAbstractEvent extends VSPrefs { * * @param process the process */ - public void init(VSProcess process) { + public void init(VSInternalProcess process) { if (this.process == null) { this.process = process; this.prefs = process.getPrefs(); @@ -166,7 +166,7 @@ abstract public class VSAbstractEvent extends VSPrefs { * * @return the process */ - public VSProcess getProcess() { + public VSInternalProcess getProcess() { return process; } -- cgit v1.2.3