summaryrefslogtreecommitdiff
path: root/sources/events/VSAbstractEvent.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-08-04 20:44:54 +0000
committerPaul Buetow <paul@buetow.org>2008-08-04 20:44:54 +0000
commit8ae434c63e6382a8cb850551d947285f5fcb3c25 (patch)
tree751b0b24cd86768d57e9338cf0718485f68a095e /sources/events/VSAbstractEvent.java
parentbb4eb6634485d05e9e8cff6497c60ef696a28eeb (diff)
restructured stuff
Diffstat (limited to 'sources/events/VSAbstractEvent.java')
-rw-r--r--sources/events/VSAbstractEvent.java10
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;
}