summaryrefslogtreecommitdiff
path: root/sources/utils
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/utils
parentbb1dbccae485263ea5182546006339870c57b367 (diff)
Run astyle.
Diffstat (limited to 'sources/utils')
-rw-r--r--sources/utils/VSClassLoader.java6
-rw-r--r--sources/utils/VSFrame.java16
-rw-r--r--sources/utils/VSInfoArea.java6
-rw-r--r--sources/utils/VSPriorityQueue.java8
-rw-r--r--sources/utils/VSRandom.java10
-rw-r--r--sources/utils/VSTools.java12
-rw-r--r--sources/utils/VSTupel.java14
7 files changed, 36 insertions, 36 deletions
diff --git a/sources/utils/VSClassLoader.java b/sources/utils/VSClassLoader.java
index 8d4f784..75ad994 100644
--- a/sources/utils/VSClassLoader.java
+++ b/sources/utils/VSClassLoader.java
@@ -11,12 +11,12 @@ package utils;
* The Class VSClassLoader.
*/
public class VSClassLoader extends ClassLoader {
-
+
/**
* New instance.
- *
+ *
* @param classname the classname
- *
+ *
* @return the object
*/
public Object newInstance(String classname) {
diff --git a/sources/utils/VSFrame.java b/sources/utils/VSFrame.java
index b3a43b5..d14c06b 100644
--- a/sources/utils/VSFrame.java
+++ b/sources/utils/VSFrame.java
@@ -13,23 +13,23 @@ import javax.swing.JFrame;
* The Class VSFrame.
*/
public class VSFrame extends JFrame {
- private static final long serialVersionUID = 1L;
-
+ private static final long serialVersionUID = 1L;
+
/** The Constant X_LOCATION_OFFSET. */
private final static int X_LOCATION_OFFSET = 40;
-
+
/** The Constant Y_LOCATION_OFFSET. */
private final static int Y_LOCATION_OFFSET = 80;
-
+
/** The parent. */
private Component parent;
-
+
/** The dispose. */
private boolean dispose;
/**
* Instantiates a new vS frame.
- *
+ *
* @param title the title
* @param parent the parent
*/
@@ -40,7 +40,7 @@ public class VSFrame extends JFrame {
/**
* Instantiates a new vS frame.
- *
+ *
* @param title the title
*/
public VSFrame(String title) {
@@ -50,7 +50,7 @@ public class VSFrame extends JFrame {
/**
* Inits the.
- *
+ *
* @param parent the parent
*/
private void init(Component parent) {
diff --git a/sources/utils/VSInfoArea.java b/sources/utils/VSInfoArea.java
index bb485b9..f922a5b 100644
--- a/sources/utils/VSInfoArea.java
+++ b/sources/utils/VSInfoArea.java
@@ -13,8 +13,8 @@ import javax.swing.border.*;
* The Class VSInfoArea.
*/
public class VSInfoArea extends JTextPane {
- private static final long serialVersionUID = 1L;
-
+ private static final long serialVersionUID = 1L;
+
/**
* Instantiates a new vS info area.
*/
@@ -24,7 +24,7 @@ public class VSInfoArea extends JTextPane {
/**
* Instantiates a new vS info area.
- *
+ *
* @param text the text
*/
public VSInfoArea(String text) {
diff --git a/sources/utils/VSPriorityQueue.java b/sources/utils/VSPriorityQueue.java
index da83fe6..84d9a79 100644
--- a/sources/utils/VSPriorityQueue.java
+++ b/sources/utils/VSPriorityQueue.java
@@ -11,13 +11,13 @@ import java.util.PriorityQueue;
* The Class VSPriorityQueue.
*/
public final class VSPriorityQueue<T> extends PriorityQueue<T> {
- private static final long serialVersionUID = 1L;
-
+ private static final long serialVersionUID = 1L;
+
/**
* Gets the.
- *
+ *
* @param index the index
- *
+ *
* @return the t
*/
public T get(int index) {
diff --git a/sources/utils/VSRandom.java b/sources/utils/VSRandom.java
index bd449d6..489bc90 100644
--- a/sources/utils/VSRandom.java
+++ b/sources/utils/VSRandom.java
@@ -11,11 +11,11 @@ import java.util.Random;
* The Class VSRandom.
*/
public final class VSRandom extends Random {
- private static final long serialVersionUID = 1L;
-
+ private static final long serialVersionUID = 1L;
+
/**
* Instantiates a new vS random.
- *
+ *
* @param seedAdd the seed add
*/
public VSRandom(long seedAdd) {
@@ -31,9 +31,9 @@ public final class VSRandom extends Random {
/**
* Next long.
- *
+ *
* @param mod the mod
- *
+ *
* @return the long
*/
public long nextLong(long mod) {
diff --git a/sources/utils/VSTools.java b/sources/utils/VSTools.java
index a6c34a0..e4db8e1 100644
--- a/sources/utils/VSTools.java
+++ b/sources/utils/VSTools.java
@@ -10,12 +10,12 @@ package utils;
* The Class VSTools.
*/
public final class VSTools {
-
+
/**
* Gets the time string.
- *
+ *
* @param time the time
- *
+ *
* @return the time string
*/
public static String getTimeString(long time) {
@@ -26,12 +26,12 @@ public final class VSTools {
return ret + "ms";
}
-
+
/**
* Gets the string time.
- *
+ *
* @param string the string
- *
+ *
* @return the string time
*/
public static long getStringTime(String string) {
diff --git a/sources/utils/VSTupel.java b/sources/utils/VSTupel.java
index 2fea87a..c259f52 100644
--- a/sources/utils/VSTupel.java
+++ b/sources/utils/VSTupel.java
@@ -9,19 +9,19 @@ package utils;
* The Class VSTupel.
*/
public final class VSTupel<A,B,C> {
-
+
/** The a. */
private A a;
-
+
/** The b. */
private B b;
-
+
/** The c. */
private C c;
/**
* Instantiates a new vS tupel.
- *
+ *
* @param a the a
* @param b the b
* @param c the c
@@ -34,7 +34,7 @@ public final class VSTupel<A,B,C> {
/**
* Gets the a.
- *
+ *
* @return the a
*/
public A getA() {
@@ -43,7 +43,7 @@ public final class VSTupel<A,B,C> {
/**
* Gets the b.
- *
+ *
* @return the b
*/
public B getB() {
@@ -52,7 +52,7 @@ public final class VSTupel<A,B,C> {
/**
* Gets the c.
- *
+ *
* @return the c
*/
public C getC() {