]> git.mxchange.org Git - jcore.git/commitdiff
Auto-formatted whole project
authorRoland Haeder <roland@mxchange.org>
Fri, 9 Oct 2015 19:38:54 +0000 (21:38 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 9 Oct 2015 19:38:54 +0000 (21:38 +0200)
src/org/mxchange/jcore/BaseFrameworkSystem.java
src/org/mxchange/jcore/FrameworkInterface.java
src/org/mxchange/jcore/application/Application.java
src/org/mxchange/jcore/manager/application/ApplicationManager.java
src/org/mxchange/jcore/manager/application/ManageableApplication.java

index 0dd6a561221b8ec859f134e849cd7c015be192e5..7276e42751ea7a4754015b34a1c0264822fe6199 100644 (file)
@@ -92,6 +92,7 @@ public abstract class BaseFrameworkSystem implements FrameworkInterface {
         * Converts null to empty string or leaves original object untouched.
         * <p>
         * @param object Any string
+        * <p>
         * @return Empty string if null or original string TODO: Move to own utility
         * class
         */
@@ -111,6 +112,7 @@ public abstract class BaseFrameworkSystem implements FrameworkInterface {
         * <p>
         * @param str String to tokenize and get array from
         * @param delimiter Delimiter
+        * <p>
         * @return Array from tokenized string TODO Get rid of size parameter TODO:
         * Move to own utility class
         */
index 2a9a6bd436344f48651c7dec7dbd6c0c5efa41a5..612c6bb59cf17182aff9d965e711c5b5f29d80a4 100644 (file)
@@ -57,6 +57,7 @@ public interface FrameworkInterface {
         * Getter for human-readable string from given key
         * <p>
         * @param key Key to return
+        * <p>
         * @return Human-readable message
         */
        public String getMessageStringFromKey (final String key);
index 9d01f772d2176c2ae085e9b7eb976e103ec3a8ee..4d45b2e0a538ec5e5404a2dac49b35a412981504 100644 (file)
@@ -35,7 +35,8 @@ public interface Application extends FrameworkInterface {
        /**
         * Run the main loop
         * <p>
-        * @throws org.mxchange.jcore.exceptions.MenuInitializationException If the menu could not be initialized
+        * @throws org.mxchange.jcore.exceptions.MenuInitializationException If the
+        * menu could not be initialized
         */
        public void doMainLoop () throws MenuInitializationException;
 
index fc988e542f9815cbb261ae3e6282091e5dbb4b19..9439aafb58bf7a653d7910099c05f4a71fb04163 100644 (file)
@@ -36,6 +36,7 @@ public class ApplicationManager extends BaseFacade implements ManageableApplicat
         * Getter for a singleton application manager
         * <p>
         * @param application An instance of a Application class
+        * <p>
         * @return Get a managable application
         */
        public static ManageableApplication getSingeltonManager (final Application application) {
index b2a8d3a2f42ce2370df3431357b86f8abd7f086f..ee11eaa1aaef1785970b1e9c25d96aa5d88a1556 100644 (file)
@@ -29,7 +29,8 @@ public interface ManageableApplication extends Facade {
        /**
         * Launches application
         * <p>
-        * @throws org.mxchange.jcore.exceptions.MenuInitializationException If the menu could not be initialized
+        * @throws org.mxchange.jcore.exceptions.MenuInitializationException If the
+        * menu could not be initialized
         */
        public void start () throws MenuInitializationException;
 }