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

Quick Search    Search Deep

com.neuron.jaffer
Class AFP_ServerInfo  view AFP_ServerInfo download AFP_ServerInfo.java

java.lang.Object
  extended bycom.neuron.jaffer.Utility
      extended bycom.neuron.jaffer.AFP_ServerInfo

class AFP_ServerInfo
extends Utility


Field Summary
private  java.lang.String[] afpVersions
           
private  int flags
           
private  java.lang.Object icon
           
private  java.lang.String serverName
           
private  java.lang.String[] uamModules
           
 
Fields inherited from class com.neuron.jaffer.Utility
 
Constructor Summary
(package private) AFP_ServerInfo(ByteReader rr)
           
(package private) AFP_ServerInfo(java.lang.String sn, java.lang.String[] av, java.lang.String[] ua, int flags)
           
 
Method Summary
private static int codedLength(java.lang.String[] s)
           
private  int readInt2(ByteReader rr, int pos)
           
private  java.lang.String readPString(ByteReader rr, int pos)
           
private  java.lang.String[] readPStringArray(ByteReader rr, int pos)
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 void write(ByteWriter ww)
           
 
Methods inherited from class com.neuron.jaffer.Utility
afp2unixTime, bits, dump, dump, dump, dump, empty, error, hasBits, hex, hex, hex, isValidLongName, list, readAFPString, readCString, readInt2, readInt4, readInt8, readPString, readPStringArray, unix2afpTime, writeInt2, writeInt4, writeInt8, writePString, writePStringArray
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serverName

private java.lang.String serverName

afpVersions

private java.lang.String[] afpVersions

uamModules

private java.lang.String[] uamModules

icon

private java.lang.Object icon

flags

private int flags
Constructor Detail

AFP_ServerInfo

AFP_ServerInfo(java.lang.String sn,
               java.lang.String[] av,
               java.lang.String[] ua,
               int flags)

AFP_ServerInfo

AFP_ServerInfo(ByteReader rr)
         throws java.io.IOException
Method Detail

readInt2

private int readInt2(ByteReader rr,
                     int pos)
              throws java.io.IOException

readPString

private java.lang.String readPString(ByteReader rr,
                                     int pos)
                              throws java.io.IOException

readPStringArray

private java.lang.String[] readPStringArray(ByteReader rr,
                                            int pos)
                                     throws java.io.IOException

write

public void write(ByteWriter ww)

codedLength

private static final int codedLength(java.lang.String[] s)

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