A B C D E G H I M N O P R S T

A

actionPerformed(ActionEvent) - Method in class net.sf.cscc.examples.chatsystem.ChatClient
This method handles button pressed events, ie.
actionPerformed(ActionEvent) - Method in class net.sf.cscc.examples.simplesystem.Client
This method handles button pressed events, ie.
actionPerformed(ActionEvent) - Method in class net.sf.cscc.examples.simplesystem.Server
This method is called if one of the buttons of the GUI is pressed.
additionalData - Variable in class net.sf.cscc.CommunicationEvent
Stores additional data about the communication event.
addObserver(CommunicationEventObserver) - Method in class net.sf.cscc.ServerConnectionManager
An observer which wants to be notified about communication events can register itself at the communication observer list.
addObserver(CommunicationEventObserver) - Method in class net.sf.cscc.ClientConnectionManager
An observer which wants to be notified about communication events can register itself at the communication observer list by this method.
addObserver(DataEventBaseObserver) - Method in class net.sf.cscc.ServerConnectionManager
An observer which wants to be notified about new messages from clients can register itself at the observer list.
addObserver(DataEventBaseObserver) - Method in class net.sf.cscc.ClientConnectionManager
This method adds an observer to the data event observer list.

B

beginListening() - Method in class net.sf.cscc.ServerConnectionManager
This method is used to start the listening process of the server.

C

ChatClient - class net.sf.cscc.examples.chatsystem.ChatClient.
This class represents the client in a client/server-chatsystem.
ChatClient() - Constructor for class net.sf.cscc.examples.chatsystem.ChatClient
Constructor to initialize the Client.
ChatServer - class net.sf.cscc.examples.chatsystem.ChatServer.
This class represents the server in the chatsystem.
ChatServer() - Constructor for class net.sf.cscc.examples.chatsystem.ChatServer
Constructor to initialize the Server.
Client - class net.sf.cscc.examples.simplesystem.Client.
This class provides a client application, which demonstrates the usage of this client/server component.
Client() - Constructor for class net.sf.cscc.examples.simplesystem.Client
Constructor initializes the gui and prepares for creating a connection to a server
ClientConnectionManager - class net.sf.cscc.ClientConnectionManager.
This is one of the two main classes (ServerConnectionManager and ClientConnectionManager) of the CSCC library which helps to connect and to exchange the so-called data events between a remote server and a client connected over a particular TCP/IP port.
ClientConnectionManager(int) - Constructor for class net.sf.cscc.ClientConnectionManager
The constructor initializes this object.
clientId - Variable in class net.sf.cscc.DataEvent
This variable refers to the object identifying the sender client uniquely.
close() - Method in class net.sf.cscc.ClientConnectionManager
Closes the connection to the server.
closeAllConnections() - Method in class net.sf.cscc.ServerConnectionManager
Closes all (currently active, ie. open) connections to the currently subscribed clients.
closeConnection() - Method in class net.sf.cscc.ClientConnectionManager
Deprecated. Don't use this method anymore, use ClientConnectionManager.close() instead!
closeConnection(Object) - Method in class net.sf.cscc.ServerConnectionManager
Closes a connection to a client.
CommunicationEvent - class net.sf.cscc.CommunicationEvent.
This class represents a communication event.
CommunicationEvent(int) - Constructor for class net.sf.cscc.CommunicationEvent
Constructor initializes the object.
CommunicationEvent(int, Object) - Constructor for class net.sf.cscc.CommunicationEvent
Constructor initializes the object.
CommunicationEventObserver - interface net.sf.cscc.CommunicationEventObserver.
This interface has to be implemented by observers which want to be notified about the communication events that occurred.
CommunicationEventReceiver - class net.sf.cscc.test.CommunicationEventReceiver.
 
CommunicationEventReceiver() - Constructor for class net.sf.cscc.test.CommunicationEventReceiver
Construtor.
CONNECTION_BROKEN - Static variable in class net.sf.cscc.CommunicationEvent
Describes the type of event which occurs if the connection breaks.
CONNECTION_CLOSED - Static variable in class net.sf.cscc.CommunicationEvent
Describes the normal closing of connection by one of the communication partners.
CONNECTION_ESTABLISHED - Static variable in class net.sf.cscc.CommunicationEvent
Constant describes if the connection was established.
CONNECTION_START_LISTENING - Static variable in class net.sf.cscc.CommunicationEvent
Constant describes the start of a listener thread.
CONNECTION_STOP_LISTENING - Static variable in class net.sf.cscc.CommunicationEvent
Constant describes the end of a listening thread.
CsccException - exception net.sf.cscc.CsccException.
This class represents an exception which could be thrown by the CSCC.
CsccException() - Constructor for class net.sf.cscc.CsccException
Creates the exception without message.
CsccException(String) - Constructor for class net.sf.cscc.CsccException
Creates the exception with a given message.

D

data - Variable in class net.sf.cscc.DataEvent
This field refers to the data which is encapsulated in this DataEvent.
DataEvent - class net.sf.cscc.DataEvent.
This class encapsulates the data which is associated with a specific data event that occurred.
DataEvent(Object, Object) - Constructor for class net.sf.cscc.DataEvent
Constructor initializes the object.
DataEventBaseObserver - interface net.sf.cscc.DataEventBaseObserver.
This interface is the base for DataEventObserver and DataEventReceivingObserver interfaces.
DataEventObserver - interface net.sf.cscc.DataEventObserver.
This interface has to be implemented by observers which want to be notified about new data events in the event queue.
DataEventReceivingObserver - interface net.sf.cscc.DataEventReceivingObserver.
This interface has to be implemented by observers which want to be notified about new events in the event queue.
dispose() - Method in class net.sf.cscc.ServerConnectionManager
Releases all occupied ressources by this component, i.e. all the connections are closed, the listening on the TCP/IP port is stopped and the internally used threads are stopped.

E

eventId - Variable in class net.sf.cscc.CommunicationEvent
Stores a numeric id about the event.
eventKey - Variable in class net.sf.cscc.DataEvent
This variable stores a key which identifies the event uniquely.
exit() - Method in class net.sf.cscc.examples.chatsystem.ChatServer
Method to terminate the application.
exit() - Method in class net.sf.cscc.examples.chatsystem.ChatClient
Method to terminate the application.

G

getAge() - Method in class net.sf.cscc.examples.simplesystem.PersonalInformation
Return the age of the person.
getClientId() - Method in class net.sf.cscc.DataEvent
This method returns the client id which is represented as an object.
getClientId() - Method in class net.sf.cscc.test.Message4
 
getClientId() - Method in class net.sf.cscc.test.Message3
 
getClientId() - Method in class net.sf.cscc.test.Message5
 
getClientId() - Method in class net.sf.cscc.test.Message6
 
getClientId() - Method in class net.sf.cscc.test.Message2
 
getClientId() - Method in class net.sf.cscc.test.Message1
 
getData() - Method in class net.sf.cscc.CommunicationEvent
This method returns the additional data of the message.
getData() - Method in class net.sf.cscc.DataEvent
This method returns the encapsulated event data.
getDataEvent() - Method in class net.sf.cscc.ServerConnectionManager
This method returns the oldest DataEvent object received from the server.
getDataEvent() - Method in class net.sf.cscc.ClientConnectionManager
This method returns the oldest DataEvent object received from the server.
getEventId() - Method in class net.sf.cscc.CommunicationEvent
This method returns the event id.
getEventKey() - Method in class net.sf.cscc.DataEvent
This method returns the event key.
getEventKey() - Method in class net.sf.cscc.test.Message4
 
getEventKey() - Method in class net.sf.cscc.test.Message3
 
getEventKey() - Method in class net.sf.cscc.test.Message5
 
getEventKey() - Method in class net.sf.cscc.test.Message6
 
getEventKey() - Method in class net.sf.cscc.test.Message2
 
getEventKey() - Method in class net.sf.cscc.test.Message1
 
getFirstName() - Method in class net.sf.cscc.examples.simplesystem.PersonalInformation
Returns the first name of the person.
getLastName() - Method in class net.sf.cscc.examples.simplesystem.PersonalInformation
Returns the last name of the person.
getMessageId() - Method in class net.sf.cscc.test.Message4
 
getMessageId() - Method in class net.sf.cscc.test.Message3
 
getMessageId() - Method in class net.sf.cscc.test.Message5
 
getMessageId() - Method in class net.sf.cscc.test.Message6
 
getMessageId() - Method in class net.sf.cscc.test.Message2
 
getMessageId() - Method in class net.sf.cscc.test.Message1
 
getPortNumber() - Method in class net.sf.cscc.ServerConnectionManager
Gets the currently set port number.
getPortNumber() - Method in class net.sf.cscc.ClientConnectionManager
This method returns the currently set port number.
getVectorData() - Method in class net.sf.cscc.test.Message4
 
getVectorData() - Method in class net.sf.cscc.test.Message3
 
getVectorData() - Method in class net.sf.cscc.test.Message5
 
getVectorData() - Method in class net.sf.cscc.test.Message6
 
getVectorData() - Method in class net.sf.cscc.test.Message2
 
getVectorData() - Method in class net.sf.cscc.test.Message1
 

H

hasDataEvents() - Method in class net.sf.cscc.ServerConnectionManager
This method returns true, if there are data events in the incoming event queue.
hasDataEvents() - Method in class net.sf.cscc.ClientConnectionManager
This method returns true, if any DataEvent objects are in the incoming data event queue.

I

isConnectionOpen() - Method in class net.sf.cscc.ClientConnectionManager
This method returns true if the connection to the server is currently open.

M

main(String[]) - Static method in class net.sf.cscc.examples.chatsystem.ChatServer
This method starts up the client.
main(String[]) - Static method in class net.sf.cscc.examples.chatsystem.ChatClient
This method starts up the client.
main(String[]) - Static method in class net.sf.cscc.examples.simplesystem.Client
This method starts up the client.
main(String[]) - Static method in class net.sf.cscc.examples.simplesystem.Server
Starts the server application.
main(String[]) - Static method in class net.sf.cscc.test.TestClient5
 
main(String[]) - Static method in class net.sf.cscc.test.TestClient
 
main(String[]) - Static method in class net.sf.cscc.test.TestServer
 
main(String[]) - Static method in class net.sf.cscc.test.TestServer4
 
main(String[]) - Static method in class net.sf.cscc.test.Message4
 
main(String[]) - Static method in class net.sf.cscc.test.Message3
 
main(String[]) - Static method in class net.sf.cscc.test.TestClient2
 
main(String[]) - Static method in class net.sf.cscc.test.TestServer1
 
main(String[]) - Static method in class net.sf.cscc.test.Message5
 
main(String[]) - Static method in class net.sf.cscc.test.TestClient3
 
main(String[]) - Static method in class net.sf.cscc.test.TestServer5
 
main(String[]) - Static method in class net.sf.cscc.test.TestClient6
 
main(String[]) - Static method in class net.sf.cscc.test.TestServer3
 
main(String[]) - Static method in class net.sf.cscc.test.Message6
 
main(String[]) - Static method in class net.sf.cscc.test.TestClient1
 
main(String[]) - Static method in class net.sf.cscc.test.Message2
 
main(String[]) - Static method in class net.sf.cscc.test.Message1
 
main(String[]) - Static method in class net.sf.cscc.test.TestServer6
 
main(String[]) - Static method in class net.sf.cscc.test.TestServer2
 
main(String[]) - Static method in class net.sf.cscc.test.TestClient4
 
Message1 - class net.sf.cscc.test.Message1.
 
Message1() - Constructor for class net.sf.cscc.test.Message1
 
Message1(int, Object, Object, Object, Vector) - Constructor for class net.sf.cscc.test.Message1
 
Message2 - class net.sf.cscc.test.Message2.
 
Message2() - Constructor for class net.sf.cscc.test.Message2
 
Message2(int, Object, Object, Object, Vector) - Constructor for class net.sf.cscc.test.Message2
 
Message3 - class net.sf.cscc.test.Message3.
 
Message3() - Constructor for class net.sf.cscc.test.Message3
 
Message3(int, Object, Object, Object, Vector) - Constructor for class net.sf.cscc.test.Message3
 
Message4 - class net.sf.cscc.test.Message4.
 
Message4() - Constructor for class net.sf.cscc.test.Message4
 
Message4(int, Object, Object, Object, Vector) - Constructor for class net.sf.cscc.test.Message4
 
Message5 - class net.sf.cscc.test.Message5.
 
Message5() - Constructor for class net.sf.cscc.test.Message5
 
Message5(int, Object, Object, Object, Vector) - Constructor for class net.sf.cscc.test.Message5
 
Message6 - class net.sf.cscc.test.Message6.
 
Message6() - Constructor for class net.sf.cscc.test.Message6
 
Message6(int, Object, Object, Object, Vector) - Constructor for class net.sf.cscc.test.Message6
 

N

net.sf.cscc - package net.sf.cscc
The package net.sf.cscc contains the classes and interfaces for the Client/Server Communication Component (CSCC).
net.sf.cscc.examples.chatsystem - package net.sf.cscc.examples.chatsystem
The package net.sf.cscc.examples.chatsystem contains a Server and a Client of a chatsystem demonstrating the usage of Client/Server Communication Component (CSCC).
net.sf.cscc.examples.simplesystem - package net.sf.cscc.examples.simplesystem
The package net.sf.cscc.examples.simplesystem contains a small application demonstrating how to send data from multiple clients to a server using the Client/Server Communication Component (CSCC).
net.sf.cscc.test - package net.sf.cscc.test
 
nickname - Variable in class net.sf.cscc.examples.chatsystem.ChatClient
Name to appear in the chat session.

O

open(String) - Method in class net.sf.cscc.ClientConnectionManager
This method opens a new connection to a specified server.

P

PersonalInformation - class net.sf.cscc.examples.simplesystem.PersonalInformation.
This class encapsulates data which is entered at the client side.
PersonalInformation(String, String, int) - Constructor for class net.sf.cscc.examples.simplesystem.PersonalInformation
Initializes the object with a first name, a last name and the age of a person.
PORT_NUMBER - Static variable in class net.sf.cscc.examples.simplesystem.Server
Specifies the TCP/IP port number which is used to connect to the server.

R

receiveDataEvent() - Method in class net.sf.cscc.ServerConnectionManager
This method returns the oldest DataEvent object in the queue.
receiveDataEvent() - Method in class net.sf.cscc.ClientConnectionManager
This method returns the oldest DataEvent object in the incoming event queue.
receiveEvent() - Method in interface net.sf.cscc.DataEventObserver
This interface method is called by objects the DataEventObservable class.
receiveEvent(CommunicationEvent) - Method in interface net.sf.cscc.CommunicationEventObserver
This interface method is called by objects of the type CommunicationEventObservable.
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.examples.chatsystem.ChatServer
This interface method is called by communication component class, every time a communication event occurred.
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.examples.chatsystem.ChatClient
This interface method is called by communication component class, every time a communication event occurred.
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.examples.simplesystem.Client
This interface method is called by communication component class, every time a communication event occurred.
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.examples.simplesystem.Server
This interface method is called by objects of the CommunicationEventObservable class.
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.test.TestClient5
 
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.test.TestClient
 
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.test.TestServer
 
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.test.TestServer4
 
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.test.CommunicationEventReceiver
Receives communication events.
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.test.TestClient2
 
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.test.TestServer1
 
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.test.TestClient3
 
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.test.TestServer5
 
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.test.TestClient6
 
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.test.TestServer3
 
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.test.TestClient1
 
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.test.TestServer6
 
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.test.TestServer2
 
receiveEvent(CommunicationEvent) - Method in class net.sf.cscc.test.TestClient4
 
receiveEvent(DataEvent) - Method in interface net.sf.cscc.DataEventReceivingObserver
This interface method is called by objects of the DataEventObservable class.
receiveEvent(DataEvent) - Method in class net.sf.cscc.examples.chatsystem.ChatServer
This interface method is called by the communication component.
receiveEvent(DataEvent) - Method in class net.sf.cscc.examples.chatsystem.ChatClient
This interface method is called by the communication component.
receiveEvent(DataEvent) - Method in class net.sf.cscc.examples.simplesystem.Client
This interface method is called by the communication component.
receiveEvent(DataEvent) - Method in class net.sf.cscc.examples.simplesystem.Server
This interface method is called by objects of the communication component.
receiveEvent(DataEvent) - Method in class net.sf.cscc.test.TestClient5
 
receiveEvent(DataEvent) - Method in class net.sf.cscc.test.TestClient
 
receiveEvent(DataEvent) - Method in class net.sf.cscc.test.TestServer
 
receiveEvent(DataEvent) - Method in class net.sf.cscc.test.TestServer4
 
receiveEvent(DataEvent) - Method in class net.sf.cscc.test.TestClient2
 
receiveEvent(DataEvent) - Method in class net.sf.cscc.test.TestServer1
 
receiveEvent(DataEvent) - Method in class net.sf.cscc.test.TestClient3
 
receiveEvent(DataEvent) - Method in class net.sf.cscc.test.TestServer5
 
receiveEvent(DataEvent) - Method in class net.sf.cscc.test.TestClient6
 
receiveEvent(DataEvent) - Method in class net.sf.cscc.test.TestServer3
 
receiveEvent(DataEvent) - Method in class net.sf.cscc.test.TestClient1
 
receiveEvent(DataEvent) - Method in class net.sf.cscc.test.TestServer6
 
receiveEvent(DataEvent) - Method in class net.sf.cscc.test.TestServer2
 
receiveEvent(DataEvent) - Method in class net.sf.cscc.test.TestClient4
 
removeDataEvent() - Method in class net.sf.cscc.ServerConnectionManager
This method is used to remove manually the oldest event in the incoming event queue.
removeDataEvent() - Method in class net.sf.cscc.ClientConnectionManager
This method is used to remove manually the oldest event in the incoming event queue.
removeObserver(CommunicationEventObserver) - Method in class net.sf.cscc.ServerConnectionManager
A communication observer which is already registered at the observer list, can be unregisterd with this method.
removeObserver(CommunicationEventObserver) - Method in class net.sf.cscc.ClientConnectionManager
An communication event observer which is already registered at the observer list can be unregisterd with this method.
removeObserver(DataEventBaseObserver) - Method in class net.sf.cscc.ServerConnectionManager
A data observer which is already registered at the observer list can be unregisterd with this method.
removeObserver(DataEventBaseObserver) - Method in class net.sf.cscc.ClientConnectionManager
This method unregisters an observer from the data event observer list.

S

send() - Method in class net.sf.cscc.test.TestClient5
 
send() - Method in class net.sf.cscc.test.TestServer4
 
send() - Method in class net.sf.cscc.test.TestClient3
 
send() - Method in class net.sf.cscc.test.TestServer5
 
send() - Method in class net.sf.cscc.test.TestClient6
 
send() - Method in class net.sf.cscc.test.TestServer3
 
send() - Method in class net.sf.cscc.test.TestServer6
 
send() - Method in class net.sf.cscc.test.TestClient4
 
sendBroadCastEvent(DataEvent) - Method in class net.sf.cscc.ServerConnectionManager
This method broadcasts an event to all connected clients.
sendDataEvent(DataEvent) - Method in class net.sf.cscc.ClientConnectionManager
This method sends a DataEvent object from the client to the server.
sendDataEvent(DataEvent, Object) - Method in class net.sf.cscc.ServerConnectionManager
This method sends a DataEvent object to a specific client having a given clientId.
Server - class net.sf.cscc.examples.simplesystem.Server.
This class provides a server application, which demonstrates the usage of this client/server component.
Server() - Constructor for class net.sf.cscc.examples.simplesystem.Server
Constructor initializes the GUI of the server application and creates a ServerConnectionManager object for the communication with the clients.
ServerConnectionManager - class net.sf.cscc.ServerConnectionManager.
This is the server class of the two main classes ServerConnectionManager and ClientConnectionManager in this client server communication component.
ServerConnectionManager(int) - Constructor for class net.sf.cscc.ServerConnectionManager
This constructor initializes the server connection manager.
setClientId(Object) - Method in class net.sf.cscc.test.Message4
 
setClientId(Object) - Method in class net.sf.cscc.test.Message3
 
setClientId(Object) - Method in class net.sf.cscc.test.Message5
 
setClientId(Object) - Method in class net.sf.cscc.test.Message6
 
setClientId(Object) - Method in class net.sf.cscc.test.Message2
 
setClientId(Object) - Method in class net.sf.cscc.test.Message1
 
setDisconnectedState() - Method in class net.sf.cscc.examples.simplesystem.Client
 
setEventKey(Object) - Method in class net.sf.cscc.test.Message4
 
setEventKey(Object) - Method in class net.sf.cscc.test.Message3
 
setEventKey(Object) - Method in class net.sf.cscc.test.Message5
 
setEventKey(Object) - Method in class net.sf.cscc.test.Message6
 
setEventKey(Object) - Method in class net.sf.cscc.test.Message2
 
setEventKey(Object) - Method in class net.sf.cscc.test.Message1
 
setMessageId(int) - Method in class net.sf.cscc.test.Message4
 
setMessageId(int) - Method in class net.sf.cscc.test.Message3
 
setMessageId(int) - Method in class net.sf.cscc.test.Message5
 
setMessageId(int) - Method in class net.sf.cscc.test.Message6
 
setMessageId(int) - Method in class net.sf.cscc.test.Message2
 
setMessageId(int) - Method in class net.sf.cscc.test.Message1
 
setPortNumber(int) - Method in class net.sf.cscc.ServerConnectionManager
Sets the port number for the connection.
setPortNumber(int) - Method in class net.sf.cscc.ClientConnectionManager
Sets the port number for a connection.
setVectorData(Vector) - Method in class net.sf.cscc.test.Message4
 
setVectorData(Vector) - Method in class net.sf.cscc.test.Message3
 
setVectorData(Vector) - Method in class net.sf.cscc.test.Message5
 
setVectorData(Vector) - Method in class net.sf.cscc.test.Message6
 
setVectorData(Vector) - Method in class net.sf.cscc.test.Message2
 
setVectorData(Vector) - Method in class net.sf.cscc.test.Message1
 
stopListening() - Method in class net.sf.cscc.ServerConnectionManager
This method stops the listener, listening for connection requests.

T

TestClient - class net.sf.cscc.test.TestClient.
 
TestClient1 - class net.sf.cscc.test.TestClient1.
 
TestClient2 - class net.sf.cscc.test.TestClient2.
 
TestClient3 - class net.sf.cscc.test.TestClient3.
 
TestClient4 - class net.sf.cscc.test.TestClient4.
 
TestClient5 - class net.sf.cscc.test.TestClient5.
 
TestClient6 - class net.sf.cscc.test.TestClient6.
 
TestServer - class net.sf.cscc.test.TestServer.
 
TestServer() - Constructor for class net.sf.cscc.test.TestServer
 
TestServer1 - class net.sf.cscc.test.TestServer1.
 
TestServer1() - Constructor for class net.sf.cscc.test.TestServer1
 
TestServer2 - class net.sf.cscc.test.TestServer2.
 
TestServer2() - Constructor for class net.sf.cscc.test.TestServer2
 
TestServer3 - class net.sf.cscc.test.TestServer3.
 
TestServer3() - Constructor for class net.sf.cscc.test.TestServer3
 
TestServer4 - class net.sf.cscc.test.TestServer4.
 
TestServer4() - Constructor for class net.sf.cscc.test.TestServer4
 
TestServer5 - class net.sf.cscc.test.TestServer5.
 
TestServer5() - Constructor for class net.sf.cscc.test.TestServer5
 
TestServer6 - class net.sf.cscc.test.TestServer6.
 
TestServer6() - Constructor for class net.sf.cscc.test.TestServer6
 
toString() - Method in class net.sf.cscc.examples.simplesystem.PersonalInformation
Returns a String consisting of the data represented by this object.
toString() - Method in class net.sf.cscc.test.Message4
 
toString() - Method in class net.sf.cscc.test.Message3
 
toString() - Method in class net.sf.cscc.test.Message5
 
toString() - Method in class net.sf.cscc.test.Message6
 
toString() - Method in class net.sf.cscc.test.Message2
 
toString() - Method in class net.sf.cscc.test.Message1
 

A B C D E G H I M N O P R S T

Copyright © 2003, Silvio Meier and Tobias Reinhard. All Rights Reserved.