Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.mrbook.mrpostman.another.summary
Class CmdSummary  view CmdSummary download CmdSummary.java

java.lang.Object
  extended byorg.mrbook.mrpostman.another.summary.CmdSummary

public class CmdSummary
extends java.lang.Object

Command Summary class. This will store the summary information for a particular POP command execution.


Field Summary
static java.lang.String CVSID
           
static int DELE
           
private  java.lang.String errors
           
private  boolean issued
           
static int RETR
           
private  boolean success
           
static int TOP
           
private  int type
           
 
Constructor Summary
CmdSummary(int type)
           
 
Method Summary
 void failure(java.lang.String errMsg)
           
 java.lang.String getErrors()
           
 boolean isIssued()
           
 boolean isSuccess()
           
 void success()
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

CVSID

public static final java.lang.String CVSID
See Also:
Constant Field Values

TOP

public static final int TOP
See Also:
Constant Field Values

DELE

public static final int DELE
See Also:
Constant Field Values

RETR

public static final int RETR
See Also:
Constant Field Values

type

private int type

issued

private boolean issued

success

private boolean success

errors

private java.lang.String errors
Constructor Detail

CmdSummary

public CmdSummary(int type)
Method Detail

success

public void success()

failure

public void failure(java.lang.String errMsg)

isIssued

public boolean isIssued()

isSuccess

public boolean isSuccess()

getErrors

public java.lang.String getErrors()

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).