diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-25 09:03:33 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-25 09:03:33 +0000 |
| commit | 009350323123fc4b47041cb2194e8df19f69423b (patch) | |
| tree | a9562cf215181a03137d5281d49d26e0fe5a3b45 /sources/simulator/VSLogging.java | |
| parent | bb1dbccae485263ea5182546006339870c57b367 (diff) | |
Run astyle.
Diffstat (limited to 'sources/simulator/VSLogging.java')
| -rw-r--r-- | sources/simulator/VSLogging.java | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/sources/simulator/VSLogging.java b/sources/simulator/VSLogging.java index fe76abc..b1938df 100644 --- a/sources/simulator/VSLogging.java +++ b/sources/simulator/VSLogging.java @@ -15,28 +15,28 @@ import utils.*; * The Class VSLogging. */ public class VSLogging { - + /** The logging area. */ private JTextArea loggingArea; - + /** The filter text. */ private String filterText; - + /** The pause lines. */ private ArrayList<StringBuffer> pauseLines; - + /** The logging lines. */ private ArrayList<StringBuffer> loggingLines; - + /** The simulation canvas. */ private VSSimulatorCanvas simulationCanvas; - + /** The is filtered. */ private boolean isFiltered; - + /** The is paused. */ private boolean isPaused; - + /** The filter pattern. */ private Pattern filterPattern; @@ -55,7 +55,7 @@ public class VSLogging { /** * Sets the simulation canvas. - * + * * @param simulationCanvas the new simulation canvas */ public void setSimulationCanvas(VSSimulatorCanvas simulationCanvas) { @@ -64,7 +64,7 @@ public class VSLogging { /** * Gets the logging area. - * + * * @return the logging area */ public JTextArea getLoggingArea() { @@ -73,7 +73,7 @@ public class VSLogging { /** * Logg. - * + * * @param message the message */ public void logg(String message) { @@ -85,7 +85,7 @@ public class VSLogging { /** * Logg. - * + * * @param message the message * @param time the time */ @@ -103,7 +103,7 @@ public class VSLogging { /** * Checks if is paused. - * + * * @param isPaused the is paused */ public synchronized void isPaused(boolean isPaused) { @@ -119,7 +119,7 @@ public class VSLogging { /** * Logg filtered. - * + * * @param buffer the buffer */ private void loggFiltered(StringBuffer buffer) { @@ -136,7 +136,7 @@ public class VSLogging { /** * Checks if is filtered. - * + * * @param isFiltered the is filtered */ public synchronized void isFiltered(boolean isFiltered) { @@ -150,7 +150,7 @@ public class VSLogging { /** * Sets the filter text. - * + * * @param filterText the new filter text */ public synchronized void setFilterText(String filterText) { |
