diff options
| author | Paul Buetow <paul@buetow.org> | 2008-08-04 20:44:54 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-08-04 20:44:54 +0000 |
| commit | 8ae434c63e6382a8cb850551d947285f5fcb3c25 (patch) | |
| tree | 751b0b24cd86768d57e9338cf0718485f68a095e /sources/events/VSAbstractEvent.java | |
| parent | bb4eb6634485d05e9e8cff6497c60ef696a28eeb (diff) | |
restructured stuff
Diffstat (limited to 'sources/events/VSAbstractEvent.java')
| -rw-r--r-- | sources/events/VSAbstractEvent.java | 10 |
1 files changed, 5 insertions, 5 deletions
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; } |
