summaryrefslogtreecommitdiff
path: root/sources/events/VSEvent.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-25 09:03:33 +0000
committerPaul Buetow <paul@buetow.org>2008-05-25 09:03:33 +0000
commit009350323123fc4b47041cb2194e8df19f69423b (patch)
treea9562cf215181a03137d5281d49d26e0fe5a3b45 /sources/events/VSEvent.java
parentbb1dbccae485263ea5182546006339870c57b367 (diff)
Run astyle.
Diffstat (limited to 'sources/events/VSEvent.java')
-rw-r--r--sources/events/VSEvent.java30
1 files changed, 15 insertions, 15 deletions
diff --git a/sources/events/VSEvent.java b/sources/events/VSEvent.java
index c5cb5df..ddf77ca 100644
--- a/sources/events/VSEvent.java
+++ b/sources/events/VSEvent.java
@@ -12,22 +12,22 @@ import prefs.VSPrefs;
* The Class VSEvent.
*/
abstract public class VSEvent extends VSPrefs {
-
+
/** The prefs. */
protected VSPrefs prefs;
-
+
/** The process. */
protected VSProcess process;
-
+
/** The event shortname. */
private String eventShortname;
-
+
/** The event classname. */
private String eventClassname;
/**
* Inits the.
- *
+ *
* @param process the process
*/
public void init(VSProcess process) {
@@ -39,7 +39,7 @@ abstract public class VSEvent extends VSPrefs {
/**
* Sets the classname.
- *
+ *
* @param eventClassname the new classname
*/
protected final void setClassname(String eventClassname) {
@@ -51,7 +51,7 @@ abstract public class VSEvent extends VSPrefs {
/**
* Gets the classname.
- *
+ *
* @return the classname
*/
public String getClassname() {
@@ -60,7 +60,7 @@ abstract public class VSEvent extends VSPrefs {
/**
* Gets the name.
- *
+ *
* @return the name
*/
public String getName() {
@@ -69,7 +69,7 @@ abstract public class VSEvent extends VSPrefs {
/**
* Sets the shortname.
- *
+ *
* @param eventShortname the new shortname
*/
public void setShortname(String eventShortname) {
@@ -78,7 +78,7 @@ abstract public class VSEvent extends VSPrefs {
/**
* Gets the shortname.
- *
+ *
* @return the shortname
*/
public String getShortname() {
@@ -90,7 +90,7 @@ abstract public class VSEvent extends VSPrefs {
/**
* Gets the process.
- *
+ *
* @return the process
*/
public VSProcess getProcess() {
@@ -99,7 +99,7 @@ abstract public class VSEvent extends VSPrefs {
/**
* Logg.
- *
+ *
* @param message the message
*/
public void logg(String message) {
@@ -108,9 +108,9 @@ abstract public class VSEvent extends VSPrefs {
/**
* Equals.
- *
+ *
* @param event the event
- *
+ *
* @return true, if successful
*/
public boolean equals(VSEvent event) {
@@ -121,7 +121,7 @@ abstract public class VSEvent extends VSPrefs {
* On init.
*/
abstract protected void onInit();
-
+
/**
* On start.
*/