src/org/sonews/daemon/command/Command.java
changeset 37 74139325d305
parent 35 ed84c8bdd87b
     1.1 --- a/src/org/sonews/daemon/command/Command.java	Sun Aug 29 17:28:58 2010 +0200
     1.2 +++ b/src/org/sonews/daemon/command/Command.java	Sun Aug 29 18:17:37 2010 +0200
     1.3 @@ -30,22 +30,21 @@
     1.4  public interface Command
     1.5  {
     1.6  
     1.7 -  /**
     1.8 -   * @return true if this instance can be reused.
     1.9 -   */
    1.10 -  boolean hasFinished();
    1.11 +	/**
    1.12 +	 * @return true if this instance can be reused.
    1.13 +	 */
    1.14 +	boolean hasFinished();
    1.15  
    1.16 -  /**
    1.17 -   * Returns capability string that is implied by this command class.
    1.18 -   * MAY return null if the command is required by the NNTP standard.
    1.19 -   */
    1.20 -  String impliedCapability();
    1.21 +	/**
    1.22 +	 * Returns capability string that is implied by this command class.
    1.23 +	 * MAY return null if the command is required by the NNTP standard.
    1.24 +	 */
    1.25 +	String impliedCapability();
    1.26  
    1.27 -  boolean isStateful();
    1.28 +	boolean isStateful();
    1.29  
    1.30 -  String[] getSupportedCommandStrings();
    1.31 +	String[] getSupportedCommandStrings();
    1.32  
    1.33 -  void processLine(NNTPConnection conn, String line, byte[] rawLine)
    1.34 -    throws IOException, StorageBackendException;
    1.35 -
    1.36 +	void processLine(NNTPConnection conn, String line, byte[] rawLine)
    1.37 +		throws IOException, StorageBackendException;
    1.38  }