diff options
author | changhyun1.lee <changhyun1.lee@samsung.com> | 2014-07-03 21:29:46 +0900 |
---|---|---|
committer | changhyun1.lee <changhyun1.lee@samsung.com> | 2014-07-03 21:29:46 +0900 |
commit | 4a25890c9cd18e8e45ee0ee9b84da21fe0f93188 (patch) | |
tree | 581855fbfc1aac18d692f86c652f3041f6872a89 | |
parent | b3d2f147744ebc966b6c8ec4ed190e6450434b9b (diff) | |
download | common-eplugin-4a25890c9cd18e8e45ee0ee9b84da21fe0f93188.tar.gz common-eplugin-4a25890c9cd18e8e45ee0ee9b84da21fe0f93188.tar.bz2 common-eplugin-4a25890c9cd18e8e45ee0ee9b84da21fe0f93188.zip |
COMMON: Fixed coding convention
Change-Id: I0221b2084159d6d5ecd99d3e4553907c791f7864
Signed-off-by: changhyun1.lee <changhyun1.lee@samsung.com>
4 files changed, 15 insertions, 36 deletions
diff --git a/org.tizen.common/src/org/tizen/common/daemon/AbstractServer.java b/org.tizen.common/src/org/tizen/common/daemon/AbstractServer.java index 3245dbc60..5409e4e3f 100755 --- a/org.tizen.common/src/org/tizen/common/daemon/AbstractServer.java +++ b/org.tizen.common/src/org/tizen/common/daemon/AbstractServer.java @@ -37,7 +37,6 @@ import org.slf4j.LoggerFactory; * abstract common class for {@link Server} * </p> * @author BonYong Lee{@literal <bonyong.lee@samsung.com>} (S-Core) - * */ abstract public class AbstractServer implements Server, Runnable { @@ -152,7 +151,7 @@ abstract public class AbstractServer implements Server, Runnable { /** * wait until server state become one of <code>states</code> - * + * * @param states server states */ public void waitState( final ServerState... states ) { diff --git a/org.tizen.common/src/org/tizen/common/daemon/Server.java b/org.tizen.common/src/org/tizen/common/daemon/Server.java index ff61536d4..71da2fcf5 100755 --- a/org.tizen.common/src/org/tizen/common/daemon/Server.java +++ b/org.tizen.common/src/org/tizen/common/daemon/Server.java @@ -29,7 +29,6 @@ package org.tizen.common.daemon; * Server * * Interface to daemon( thread ) - * * </p> * * @author BonYong Lee{@literal <bonyong.lee@samsung.com>} (S-Core) diff --git a/org.tizen.common/src/org/tizen/common/daemon/ServerException.java b/org.tizen.common/src/org/tizen/common/daemon/ServerException.java index 41c84a541..fc4fc24d5 100755 --- a/org.tizen.common/src/org/tizen/common/daemon/ServerException.java +++ b/org.tizen.common/src/org/tizen/common/daemon/ServerException.java @@ -29,17 +29,13 @@ package org.tizen.common.daemon; * ServerException * * Exception for server operation - * * </p> * * @author BonYong Lee{@literal <bonyong.lee@samsung.com>} (S-Core) */ -public class -ServerException -extends Exception -{ +public class ServerException extends Exception { - /** + /** * uuid for serialization */ private static final long serialVersionUID = 3662986092815719651L; @@ -47,10 +43,8 @@ extends Exception /** * Default constructor */ - public - ServerException() - { - super(); + public ServerException() { + super(); } /** @@ -58,40 +52,27 @@ extends Exception * * @param msg exception message */ - public - ServerException( - final String msg - ) - { - super( msg ); + public ServerException( final String msg ) { + super( msg ); } - + /** * Constructor with cause * * @param cause cause of this exception */ - public - ServerException( - final Throwable cause - ) - { - super( cause ); + public ServerException( final Throwable cause ) { + super( cause ); } - + /** * Constructor with exception message and cuase * * @param msg exception message * @param cause cause of this exception */ - public - ServerException( - final String msg, - final Throwable cause - ) - { - super( msg, cause ); + public ServerException( final String msg, final Throwable cause ) { + super( msg, cause ); } - + } diff --git a/org.tizen.common/src/org/tizen/common/daemon/ServerState.java b/org.tizen.common/src/org/tizen/common/daemon/ServerState.java index 89b787e20..1a19e4cb8 100755 --- a/org.tizen.common/src/org/tizen/common/daemon/ServerState.java +++ b/org.tizen.common/src/org/tizen/common/daemon/ServerState.java @@ -36,7 +36,6 @@ package org.tizen.common.daemon; * <li>{@link #Halting}</li> * </p> * @author BonYong Lee{@literal <bonyong.lee@samsung.com>} (S-Core) - * */ public enum ServerState { /** @@ -58,4 +57,5 @@ public enum ServerState { * State to request down */ Halting + } |