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

Quick Search    Search Deep

com.yaftp.utils
Class _ARCHIVETST_  view _ARCHIVETST_ download _ARCHIVETST_.java

java.lang.Object
  extended bycom.yaftp.utils._ARCHIVETST_
All Implemented Interfaces:
ObjectArchivable, ObjectArchivableElement

class _ARCHIVETST_
extends java.lang.Object
implements ObjectArchivable, ObjectArchivableElement


Field Summary
private  java.lang.String _data
           
private  java.lang.String _otherData
           
 
Constructor Summary
_ARCHIVETST_()
           
_ARCHIVETST_(java.lang.String data, java.lang.String otherData)
           
 
Method Summary
 ObjectArchivableElement archiveFromString(java.lang.String in)
           
 java.lang.String archiveToString()
           
 java.util.Vector give_collection()
          ObjectArchivable gets its Collection back to requester through this method
 ObjectArchivableElement give_element()
           
 void loadObject(ObjectArchive archive)
           
 void storeObject(ObjectArchive archive)
           
 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

_data

private java.lang.String _data

_otherData

private java.lang.String _otherData
Constructor Detail

_ARCHIVETST_

public _ARCHIVETST_()

_ARCHIVETST_

public _ARCHIVETST_(java.lang.String data,
                    java.lang.String otherData)
Method Detail

archiveToString

public java.lang.String archiveToString()
Specified by:
archiveToString in interface ObjectArchivableElement

give_element

public ObjectArchivableElement give_element()
Specified by:
give_element in interface ObjectArchivable

archiveFromString

public ObjectArchivableElement archiveFromString(java.lang.String in)
                                          throws UtilsError
Specified by:
archiveFromString in interface ObjectArchivableElement

loadObject

public void loadObject(ObjectArchive archive)
                throws UtilsError
Specified by:
loadObject in interface ObjectArchivable

storeObject

public void storeObject(ObjectArchive archive)
                 throws UtilsError
Specified by:
storeObject in interface ObjectArchivable

give_collection

public java.util.Vector give_collection()
Description copied from interface: ObjectArchivable
ObjectArchivable gets its Collection back to requester through this method

Specified by:
give_collection in interface ObjectArchivable

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()).