summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-18 03:30:57 +0000
committerPaul Buetow <paul@buetow.org>2008-05-18 03:30:57 +0000
commit09b4f130a62ba5e05cef367f2d5adb357936d28b (patch)
tree751a45304d69a2224650f9403ac3fd26b0d2ed80
parent84faa0582608b9eaf5ab5138be126d5bec24a45a (diff)
temp
-rw-r--r--sources/events/implementations/ProtocolActivateEvent.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/sources/events/implementations/ProtocolActivateEvent.java b/sources/events/implementations/ProtocolActivateEvent.java
new file mode 100644
index 0000000..6522537
--- /dev/null
+++ b/sources/events/implementations/ProtocolActivateEvent.java
@@ -0,0 +1,11 @@
+package events.implementations;
+
+import core.VSProcess;
+import events.VSProcessEvent;
+
+public class ProcessRecoverEvent extends VSProcessEvent {
+ public void onStart() {
+ process.logg(prefs.getString("lang.recovered"));
+ process.isCrashed(false);
+ }
+}