A B C D F G H I L M N O P R S T U V W

A

acceptNetConnection() - Method in class squint.TCPPort
Await a connection from a client.
acceptTCPConnection() - Method in class squint.TCPPort
Await a connection from a client.
addConnectionListener(ConnectionListener) - Method in class squint.TCPPort
Add a connection listener to this TCPPort.
addMessageListener(TCPListener) - Method in class squint.NetConnection
Register to be notified when new data is received through this connection and when the connection is terminated.
addMessageListener(TCPListener) - Method in class squint.TCPConnection
Register to be notified when new data is received through this connection and when the connection is terminated.
available() - Method in class squint.DataInputChannel
Determine how many bytes/characters of data are currently available through a channel.

B

BLUE - Static variable in class squint.SImage
Value used to identify the blue component of an image
buttonClicked(JButton) - Method in class squint.GUIManager
If the program is expected to respond to clicks on buttons displayed in its interface, a version of this method (or its parameterless namesake) that includes code that will respond appropriately should be defined as part of the program.
buttonClicked() - Method in class squint.GUIManager
If the program is expected to respond to clicks on buttons displayed in its interface, a version of this method (or its namesake that expects a parameter) that includes code that will respond appropriately should be defined as part of the program.

C

caretRepositioned(JTextField) - Method in class squint.GUIManager
If the program is expected to respond when the cursor is moved within a JTextField, a version of this method (or its parameterless namesake) that includes code that will respond appropriately should be defined as part of the program.
caretRepositioned(JTextArea) - Method in class squint.GUIManager
If the program is expected to respond when the cursor is moved within a JTextField, a version of this method (or its parameterless namesake) that includes code that will respond appropriately should be defined as part of the program.
caretRepositioned() - Method in class squint.GUIManager
If the program is expected to respond when the cursor is moved within a JTextField or JTextArea, a version of this method (or one of its namesakes that expects a parameter) that includes code to respond appropriately should be defined as part of the program.
CHANNELS - Static variable in class squint.SImage
Number of distinct colors used in an image
close() - Method in class squint.DataInputChannel
Close the channel.
close() - Method in class squint.DataOutputChannel
Close the stream.
close() - Method in class squint.GUIManager
Close the window (if any) containing this GUIManager.
close() - Method in class squint.NetConnection
Terminate the connection to the remote machine.
close() - Method in class squint.SScanner
Closes this scanner.
close() - Method in class squint.TCPConnection
Terminate the connection to the remote machine.
close() - Method in class squint.TCPPort
Close the port
connectionClosed(TCPConnection) - Method in class squint.GUIManager
If the program is expected to respond when a TCPConnection is terminated by the remote system, a version of this method (or its parameterless namesake) that includes code that will respond appropriately should be defined as part of the program.
connectionClosed(NetConnection) - Method in class squint.GUIManager
If the program is expected to respond when a NetConnection is terminated by the remote system, a version of this method (or its parameterless namesake) that includes code that will respond appropriately should be defined as part of the program.
connectionClosed() - Method in class squint.GUIManager
If the program is expected to respond when a network connection is terminated by the remote system, a version of this method (or one of its namesakes) that includes code that will respond appropriately should be defined as part of the program.
connectionClosed(Object) - Method in class squint.GUIManager
If the program is expected to respond when a NetConnection is terminated by the remote system, a version of this method (or its parameterless namesake) that includes code that will respond appropriately should be defined as part of the program.
connectionClosed(Object) - Method in interface squint.TCPListener
Invoked when the remote side of a connection has been closed.
connectionEstablished(TCPPort) - Method in interface squint.ConnectionListener
Invoked when a connection is made to a TCPPort.
connectionEstablished(TCPPort) - Method in class squint.GUIManager
If the program needs to respond whena new connection to one of its TCPPorts is requested, the a version of this method (or its parameterless namesake) that includes code that will respond appropriately should be defined as part of the program.
connectionEstablished() - Method in class squint.GUIManager
If the program needs to respond whena new connection to one of its TCPPorts is requested, the a version of this method (or its parametered namesake) that includes code that will respond appropriately should be defined as part of the program.
ConnectionListener - Interface in squint
Describes objects that can be notified when a connection is established through a TCPPort.
contentPane - Variable in class squint.GUIManager
 
createWindow(int, int, String, int) - Method in class squint.GUIManager
This method is used to create a window on the screen to display the GUI components associated with a GUIManager.
createWindow(int, int, int) - Method in class squint.GUIManager
This method is used to create a window on the screen to display the GUI components associated with a GUIManager.
createWindow(int, int, String) - Method in class squint.GUIManager
This method is used to create a window on the screen to display the GUI components associated with a GUIManager.
createWindow(int, int) - Method in class squint.GUIManager
This method is used to create a window on the screen to display the GUI components associated with a GUIManager.

D

dataAvailable(TCPConnection) - Method in class squint.GUIManager
If the program is expected to respond when new data is received through a TCPConnection, a version of this method (or its parameterless namesake) that includes code that will respond appropriately should be defined as part of the program.
dataAvailable(NetConnection) - Method in class squint.GUIManager
If the program is expected to respond when new data is received through a NetConnection, a version of this method (or its parameterless namesake) that includes code that will respond appropriately should be defined as part of the program.
dataAvailable() - Method in class squint.GUIManager
If the program is expected to respond when new data is received through a TCPConnection, a version of this method (or its namesake that expects a parameter) that includes code that will respond appropriately should be defined as part of the program.
dataAvailable(Object) - Method in class squint.GUIManager
If the program is expected to respond when new data is received through a network connection, a version of this method (or one of its namesakes) that includes code that will respond appropriately should be defined as part of the program.
dataAvailable(Object) - Method in interface squint.TCPListener
Invoked when data is available through a TCPConnection.
DataInputChannel - Class in squint
A DataInputChannel is a stream designed to provide mechanisms to access data stored or transmitted using distinct binary encoding schemes for various types of data (i.e.
DataInputChannel(File) - Constructor for class squint.DataInputChannel
Create a DataInputStream to access the data stored within a file given a File object describing the desired file.
DataInputChannel(String) - Constructor for class squint.DataInputChannel
Create a DataInputStream given a pathname within the local file system that identifies the desired file.
DataInputChannel(InputStream) - Constructor for class squint.DataInputChannel
Create a DataInputStream given an InputStream to use to actually perform data transfer.
DataOutputChannel - Class in squint
A DataOutputChannel is a stream designed to provide mechanisms to store or transmit data using distinct binary encoding schemes for various types of data (i.e.
DataOutputChannel(File) - Constructor for class squint.DataOutputChannel
Create a DataOutputStream to store data within a file given a File object describing the desired file.
DataOutputChannel(String) - Constructor for class squint.DataOutputChannel
Create a DataOutputStream given a pathname within the local file system that identifies the desired file.
DataOutputChannel(OutputStream) - Constructor for class squint.DataOutputChannel
Create a DataOutputStream given an OutputStream to use to actually perform data transfer.
delimiter() - Method in class squint.SScanner
Returns the Pattern this SScanner is currently using to match delimiters.

F

findInLine(Pattern) - Method in class squint.SScanner
Attempts to find the next occurrence of the specified pattern ignoring delimiters.
findInLine(String) - Method in class squint.SScanner
Attempts to find the next occurrence of a pattern constructed from the specified string, ignoring delimiters.
findWithinHorizon(Pattern, int) - Method in class squint.SScanner
Attempts to find the next occurrence of the specified pattern.
findWithinHorizon(String, int) - Method in class squint.SScanner
Attempts to find the next occurrence of a pattern constructed from the specified string, ignoring delimiters.
flush() - Method in class squint.DataOutputChannel
Force any data pending transmission to be send through the network
focusGained(Component) - Method in class squint.GUIManager
If the program is expected to respond when a some GUI component in the program's interface gains the keyboard focus, a version of this method (or its parameterless namesake) that includes code that will respond appropriately should be defined as part of the program.
focusGained() - Method in class squint.GUIManager
If the program is expected to respond when a some GUI component in the program's interface gains the keyboard focus, a version of this method (or its namesake that expects to be passed the component that gained the focuse as a parameter) that includes code that will respond appropriately should be defined as part of the program.
focusLost(Component) - Method in class squint.GUIManager
If the program is expected to respond when a some GUI component in the program's interface loses the keyboard focus, a version of this method (or its parameterless namesake) that includes code that will respond appropriately should be defined as part of the program.
focusLost() - Method in class squint.GUIManager
If the program is expected to respond when a some GUI component in the program's interface loses the keyboard focus, a version of this method (or its namesake that expects to be passed the component that gained the focuse as a parameter) that includes code that will respond appropriately should be defined as part of the program.

G

getBluePixelArray() - Method in class squint.SImage
Get an array describing the blueness values of this SImage's pixels
getColor(int, int) - Method in class squint.SImage
Access the Color associated with a particular pixel of an SImage.
getGreenPixelArray() - Method in class squint.SImage
Get an array describing the greenness values of this SImage's pixels
getHeight() - Method in class squint.SImage
Get this SImage's height.
getHostName() - Static method in class squint.GUIManager
Returns the IP address or domain name for the machine executing this program
getIconHeight() - Method in class squint.SImage
Get this SImage's height.
getIconWidth() - Method in class squint.SImage
Get this SImage's width.
getImage(String) - Method in class squint.GUIManager
Access an image file given a string that is a URL or file pathname for the desire image.
getImage() - Method in class squint.SImage
Get a representation of this SImage as an Image object.
getLocalPort() - Method in class squint.TCPPort
Determine the port number associated with this port
getLocation() - Method in class squint.GUIManager
Gets the location of this window in the form of a point specifying the window's top-left corner.
getLocationOnScreen() - Method in class squint.GUIManager
Gets the location of this window in the form of a point specifying the window's top-left corner in the screen's coordinate space.
getPixelArray() - Method in class squint.SImage
Get a pixel array describing the brightness values of this SImage's pixels.
getPixelArray(int) - Method in class squint.SImage
Get a pixel array describing the amount of one of the three primary colors (red, green, and blue) in each of this image's pixels.
getPixelArrays() - Method in class squint.SImage
Get a three dimensional array describing the redness, greenness, and blueness values of this SImage's pixels
getRedPixelArray() - Method in class squint.SImage
Get an array describing the redness values of this SImage's pixels
getSize() - Method in class squint.GUIManager
Return the size of this window as a Dimension object.
getTitle() - Method in class squint.GUIManager
Gets the title of the window.
getWidth() - Method in class squint.SImage
Get this SImage's width.
getWindow() - Method in class squint.GUIManager
Access the JFrame within which the GUIManager is displayed on the screen.
GRAY - Static variable in class squint.SImage
Value used to identify the grayness of an image
GREEN - Static variable in class squint.SImage
Value used to identify the green component of an image
GUIManager - Class in squint
A GUIManager is a set of instructions describing the behavior of GUI Graphical User Interface (GUI) components within a single window on the screen.
GUIManager() - Constructor for class squint.GUIManager
Create a new GUIManger.

H

hasNext() - Method in class squint.SScanner
Returns true if this scanner has another token in its input.
hasNext(Pattern) - Method in class squint.SScanner
Returns true if the next complete token matches the specified pattern.
hasNext(String) - Method in class squint.SScanner
Returns true if the next token matches the pattern constructed from the specified string.
hasNextBigDecimal() - Method in class squint.SScanner
Returns true if the next token in this scanner's input can be interpreted as a BigDecimal using the SScanner.nextBigDecimal() method.
hasNextBigInteger() - Method in class squint.SScanner
Returns true if the next token in this scanner's input can be interpreted as a BigInteger in the default radix using the SScanner.nextBigInteger() method.
hasNextBigInteger(int) - Method in class squint.SScanner
Returns true if the next token in this scanner's input can be interpreted as a BigInteger in the specified radix using the SScanner.nextBigInteger() method.
hasNextBoolean() - Method in class squint.SScanner
Returns true if the next token in this scanner's input can be interpreted as a boolean value using a case insensitive pattern created from the string "true|false".
hasNextByte() - Method in class squint.SScanner
Returns true if the next token in this scanner's input can be interpreted as a byte value in the default radix using the SScanner.nextByte() method.
hasNextByte(int) - Method in class squint.SScanner
Returns true if the next token in this scanner's input can be interpreted as a byte value in the specified radix using the SScanner.nextByte() method.
hasNextDouble() - Method in class squint.SScanner
Returns true if the next token in this scanner's input can be interpreted as a double value using the SScanner.nextDouble() method.
hasNextFloat() - Method in class squint.SScanner
Returns true if the next token in this scanner's input can be interpreted as a float value using the SScanner.nextFloat() method.
hasNextInt() - Method in class squint.SScanner
Returns true if the next token in this scanner's input can be interpreted as an int value in the default radix using the SScanner.nextInt() method.
hasNextInt(int) - Method in class squint.SScanner
Returns true if the next token in this scanner's input can be interpreted as an int value in the specified radix using the SScanner.nextInt() method.
hasNextLine() - Method in class squint.SScanner
Returns true if there is another line in the input of this scanner.
hasNextLong() - Method in class squint.SScanner
Returns true if the next token in this scanner's input can be interpreted as a long value in the default radix using the SScanner.nextLong() method.
hasNextLong(int) - Method in class squint.SScanner
Returns true if the next token in this scanner's input can be interpreted as a long value in the specified radix using the SScanner.nextLong() method.
hasNextShort() - Method in class squint.SScanner
Returns true if the next token in this scanner's input can be interpreted as a short value in the default radix using the SScanner.nextShort() method.
hasNextShort(int) - Method in class squint.SScanner
Returns true if the next token in this scanner's input can be interpreted as a short value in the specified radix using the SScanner.nextShort() method.

I

in - Variable in class squint.NetConnection
Used to access text received through this connection
in - Variable in class squint.TCPConnection
Used to access data received through this connection
ioException() - Method in class squint.SScanner
Returns the IOException last thrown by this SScanner's underlying Readable.

L

locale() - Method in class squint.SScanner
Returns this scanner's locale.

M

match() - Method in class squint.SScanner
Returns the match result of the last scanning operation performed by this scanner.
menuItemSelected(JComboBox) - Method in class squint.GUIManager
If the program is expected to respond when a user selects an item from a JComboBox menu displayed in its interface, a version of this method ( or its paramerless namesake) that includes code that will respond appropriately should be defined as part of the program.
menuItemSelected() - Method in class squint.GUIManager
If the program is expected to respond when a user selects an item from a JComboBox menu displayed in its interface, a version of this method (or its namesake that expects a parameter) that includes code that will respond appropriately should be defined as part of the program.
mouseClicked(Component, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user clicks the mouse button in any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseClicked(JLabel, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user clicks the mouse button in any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseClicked(JPanel, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user clicks the mouse button in any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseClicked(int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user clicks the mouse button in any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseClicked() - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user clicks the mouse button in any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseDragged(Component, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user drags the mouse within any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseDragged(JLabel, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user drags the mouse within any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseDragged(JPanel, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user drags the mouse within any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseDragged(int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user drags the mouse within any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseDragged() - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user drags the mouse within any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseEntered(Component, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user moves the mouse into any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseEntered(JLabel, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user moves the mouse into any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseEntered(JPanel, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user moves the mouse into any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseEntered(int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user moves the mouse into any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseEntered() - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user moves the mouse into any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseExited(Component, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user moves the mouse out of any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseExited(JLabel, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user moves the mouse out of any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseExited(JPanel, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user moves the mouse out of any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseExited(int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user moves the mouse out of any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseExited() - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user moves the mouse out of any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseMoved(Component, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user moves the mouse within any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseMoved(JLabel, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user moves the mouse within any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseMoved(JPanel, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user moves the mouse within any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseMoved(int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user moves the mouse within any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseMoved() - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user moves the mouse within any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mousePressed(Component, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user depresses the mouse button in any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mousePressed(JLabel, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user depresses the mouse button in any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mousePressed(JPanel, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user depresses the mouse button in any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mousePressed(int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user depresses the mouse button in any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mousePressed() - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user depresses the mouse button in any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseReleased(Component, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user releases the mouse button in any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseReleased(JLabel, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user releases the mouse button in any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseReleased(JPanel, int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user releases the mouse button in any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseReleased(int, int) - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user releases the mouse button in any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.
mouseReleased() - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user releases the mouse button in any of its components, a version of this method or of one of its variants should be defined that includes the code to the user's action.

N

NetConnection - Class in squint
NetConnection is a class that implements a data connection that supports the transmission of text messages through the Internet to and from a program and a port on a remote computer.
NetConnection(String, int) - Constructor for class squint.NetConnection
Constructs a new NetConnection given a the name of a remote host and the port number on that host with which a connection should be made.
NetConnection(String, String) - Constructor for class squint.NetConnection
Constructs a new NetConnection given a the name of a remote host and the port number on that host with which a connection should be made.
NetConnection(TCPSocket) - Constructor for class squint.NetConnection
Constructs a new NetConnection given a Socket already connected to a remote port.
next() - Method in class squint.SScanner
Finds and returns the next complete token from this scanner.
next(Pattern) - Method in class squint.SScanner
Returns the next token if it matches the specified pattern.
next(String) - Method in class squint.SScanner
Returns the next token if it matches the pattern constructed from the specified string.
nextBigDecimal() - Method in class squint.SScanner
Scans the next token of the input as a BigDecimal.
nextBigInteger() - Method in class squint.SScanner
Scans the next token of the input as a BigInteger.
nextBigInteger(int) - Method in class squint.SScanner
Scans the next token of the input as a BigInteger.
nextBoolean() - Method in class squint.SScanner
Scans the next token of the input into a boolean value and returns that value.
nextByte() - Method in class squint.SScanner
Scans the next token of the input as a byte.
nextByte(int) - Method in class squint.SScanner
Scans the next token of the input as a byte.
nextDouble() - Method in class squint.SScanner
Scans the next token of the input as a double.
nextFloat() - Method in class squint.SScanner
Scans the next token of the input as a float.
nextInt() - Method in class squint.SScanner
Scans the next token of the input as an int.
nextInt(int) - Method in class squint.SScanner
Scans the next token of the input as an int.
nextLine() - Method in class squint.SScanner
Advances this scanner past the current line and returns the input that was skipped.
nextLong() - Method in class squint.SScanner
Scans the next token of the input as a long.
nextLong(int) - Method in class squint.SScanner
Scans the next token of the input as a long.
nextShort() - Method in class squint.SScanner
Scans the next token of the input as a short.
nextShort(int) - Method in class squint.SScanner
Scans the next token of the input as a short.

O

out - Variable in class squint.NetConnection
Used to send text through this connection
out - Variable in class squint.TCPConnection
Used to send data through this connection

P

paintIcon(Component, Graphics, int, int) - Method in class squint.SImage
Draw this image using the specified graphics context.

R

radix() - Method in class squint.SScanner
Returns this scanner's default radix.
read() - Method in class squint.DataInputChannel
Access the next byte of data available through the channel.
read(byte[]) - Method in class squint.DataInputChannel
Access any currently available bytes of data received through the channel.
read(byte[], int, int) - Method in class squint.DataInputChannel
Access any currently available bytes of data received through the channel.
readBoolean() - Method in class squint.DataInputChannel
Access the next byte of data available through the channel treating it as a boolean value.
readByte() - Method in class squint.DataInputChannel
Access the next byte of data available through the channel.
readChar() - Method in class squint.DataInputChannel
Access the next character of data available through the channel.
readDouble() - Method in class squint.DataInputChannel
Access the next double value available through the channel.
readFloat() - Method in class squint.DataInputChannel
Access the next float value available through the channel.
readFully(byte[]) - Method in class squint.DataInputChannel
Read some bytes from an input channel and store them into the array buffer.
readFully(byte[], int, int) - Method in class squint.DataInputChannel
Read some bytes from an input channel and store them into the array buffer.
readInt() - Method in class squint.DataInputChannel
Access the next 4 byte int value available through the channel.
readLine() - Method in class squint.DataInputChannel
Read a line of text from the input channel treating each byte as an ASCII character.
readLong() - Method in class squint.DataInputChannel
Access the next 8 byte integer value available through the channel.
readShort() - Method in class squint.DataInputChannel
Access the next 2 byte integer value available through the channel.
readString(int) - Method in class squint.DataInputChannel
Access any currently available characters of data received through the channel.
readString() - Method in class squint.DataInputChannel
Access any currently available characters of data received through the channel.
readUnsignedByte() - Method in class squint.DataInputChannel
Access the next byte of data available through the channel.
readUnsignedShort() - Method in class squint.DataInputChannel
Access the next 2 byte integer value available through the channel.
readUTF() - Method in class squint.DataInputChannel
Read a string encoded in modified UTF-8 format.
RED - Static variable in class squint.SImage
Value used to identify the red component of an image
remove() - Method in class squint.SScanner
The remove operation is not supported by this implementation of Iterator.
removeMessageListener() - Method in class squint.NetConnection
Remove any listener registered for this connectoin.
removeMessageListener() - Method in class squint.TCPConnection
Remove the listener registered for this connection

S

saveAs(String) - Method in class squint.SImage
Save the image in a PNG format file
setLocation(int, int) - Method in class squint.GUIManager
Moves this window to a new location.
setSize(int, int) - Method in class squint.GUIManager
Resizes this window.
setTitle(String) - Method in class squint.GUIManager
Sets the title for this window to the specified string.
setVisible(boolean) - Method in class squint.GUIManager
Shows or hides this window depending on the value of parameter state.
SImage - Class in squint
An SImage is a representation of an image.
SImage(int, int, int) - Constructor for class squint.SImage
Construct a new, monotone, grayscale SImage of a given width and height.
SImage(int, int, Color) - Constructor for class squint.SImage
Construct a new, monotone SImage of a given width and height.
SImage(Image) - Constructor for class squint.SImage
Construct a new SImage from a representation of the image as an object of Java's Image class.
SImage(String) - Constructor for class squint.SImage
Construct a new SImage given a String that identifies a file containing the data describing the image.
SImage(int[][]) - Constructor for class squint.SImage
Construct a new SImage from a single array of pixel values.
SImage(int[][], int[][], int[][]) - Constructor for class squint.SImage
Construct a new SImage from a three arrays of values describing the redness, blueness, and greenness of the image's pixels.
SImage(int[][][]) - Constructor for class squint.SImage
Construct a new SImage from a three dimensional array of values describing the redness, blueness and greenness of the image's pixels.
SImage(int, int[][]) - Constructor for class squint.SImage
Construct a new SImage from a two dimensional array of pixel values describing the brightness values for just one color channel.
skip(Pattern) - Method in class squint.SScanner
Skips input that matches the specified pattern, ignoring delimiters.
skip(String) - Method in class squint.SScanner
Skips input that matches a pattern constructed from the specified string.
skipBytes(int) - Method in class squint.DataInputChannel
Skip a specified number of bytes of incoming data .
sliderChanged(JSlider) - Method in class squint.GUIManager
If the program is expected to respond when a user changes the setting of a JSlider displayed in its interface, a version of this method (or its parameterless namesake) that includes code that will respond appropriately should be defined as part of the program.
sliderChanged() - Method in class squint.GUIManager
If the program is expected to respond when a user changes the setting of a JSlider displayed in its interface, a version of this method (or its namesake that expects a parameter) that includes code that will respond appropriately should be defined as part of the program.
squint - package squint
 
SScanner - Class in squint
A SScanner provides the ability to parse the text recieved through an input stream.
SScanner(File) - Constructor for class squint.SScanner
Constructs a new SScanner that produces values scanned from the specified file.
SScanner(File, String) - Constructor for class squint.SScanner
Constructs a new SScanner that produces values scanned from the specified file.
SScanner(InputStream) - Constructor for class squint.SScanner
Constructs a new SScanner that produces values scanned from the specified input stream.
SScanner(InputStream, String) - Constructor for class squint.SScanner
Constructs a new SScanner that produces values scanned from the specified input stream.
SScanner(Readable) - Constructor for class squint.SScanner
Constructs a new SScanner that produces values scanned from the specified source.
SScanner(ReadableByteChannel) - Constructor for class squint.SScanner
Constructs a new SScanner that produces values scanned from the specified channel.
SScanner(ReadableByteChannel, String) - Constructor for class squint.SScanner
Constructs a new SScanner that produces values scanned from the specified channel.
SScanner(String) - Constructor for class squint.SScanner
Constructs a new SScanner that produces values scanned from the specified string.

T

TCPConnection - Class in squint
A TCPConnection is a class that implements a data connection that supports the transmission of binary and text data through the Internet to and from a program and a port on a remote computer.
TCPConnection(String, int) - Constructor for class squint.TCPConnection
Constructs a new TCPConnection given a the name of a remote host and the port number on that host with which a connection should be made.
TCPConnection(String, String) - Constructor for class squint.TCPConnection
Constructs a new TCPConnection given a the name of a remote host and the port number on that host with which a connection should be made.
TCPConnection(TCPSocket) - Constructor for class squint.TCPConnection
Constructs a new TCPConnection given a Socket already connected to a remote port.
TCPConnection(Socket) - Constructor for class squint.TCPConnection
Constructs a new TCPConnection given a Socket already connected to a remote port.
TCPListener - Interface in squint
Describes objects that can be notified when data arrives through a TCPConnection.
TCPPort - Class in squint
A TCPPort is a class that provides access to a port through which connections can be made to a program acting as a server.
TCPPort(int) - Constructor for class squint.TCPPort
Create a new TCPPort.
textEntered(JTextField) - Method in class squint.GUIManager
If the program is expected to respond when a user finishes entering text within a JTextField displayed in its interface, a version of this method (or its parameterless namesake) that includes code that will respond appropriately should be defined as part of the program.
textEntered() - Method in class squint.GUIManager
If the program is expected to respond when a user finishes entering text within a JTextField displayed in its interface, a version of this method (or its namesake that expects a parameter) that includes code that will respond appropriately should be defined as part of the program.
toString() - Method in class squint.SScanner
Returns the string representation of this SScanner.
toString() - Method in class squint.TCPPort
Return a string description of the port

U

useDelimiter(Pattern) - Method in class squint.SScanner
Sets this scanner's delimiting pattern to the specified pattern.
useDelimiter(String) - Method in class squint.SScanner
Sets this scanner's delimiting pattern to a pattern constructed from the specified String.
useLocale(Locale) - Method in class squint.SScanner
Sets this scanner's locale to the specified locale.
useRadix(int) - Method in class squint.SScanner
Sets this scanner's default radix to the specified radix.

V

version() - Static method in class squint.GUIManager
Return the library version description

W

windowClosing() - Method in class squint.GUIManager
If a GUIManager needs to take some action when the user closes its window, a version of this method should be defined that includes the appropriate code.
write(int) - Method in class squint.DataOutputChannel
Sends the single byte of data found in the low order eight bits of the parameter value through the channel.
write(byte[]) - Method in class squint.DataOutputChannel
Sends all the bytes in array buffer through the channel.
write(byte[], int, int) - Method in class squint.DataOutputChannel
Send part of a sequence of bytes of data through the channel starting at a particular offset within the sequence.
writeBoolean(boolean) - Method in class squint.DataOutputChannel
Send a single boolean value (1 byte) through the channel.
writeByte(int) - Method in class squint.DataOutputChannel
Sends the single byte of data found in the low order eight bits of the parameter value through the channel.
writeBytes(String) - Method in class squint.DataOutputChannel
Send all of the characters in a String through the connection as a sequence of bytes.
writeChar(int) - Method in class squint.DataOutputChannel
Send a single character of data, which is comprised of two bytes, through the channel.
writeChars(String) - Method in class squint.DataOutputChannel
Send every character in the string s, through the channel, in order, two bytes per character.
writeDouble(double) - Method in class squint.DataOutputChannel
Send a double value, which is comprised of eight bytes, through the channel.
writeFloat(float) - Method in class squint.DataOutputChannel
Send a float value, which is comprised of four bytes, through the channel.
writeInt(int) - Method in class squint.DataOutputChannel
Send an int value, which is comprised of four bytes, through the channel.
writeLong(long) - Method in class squint.DataOutputChannel
Send a long value, which is comprised of eight bytes, through the channel.
writeShort(int) - Method in class squint.DataOutputChannel
Send a single 2 byte integer value (short) through the channel.
writeUTF(String) - Method in class squint.DataOutputChannel
Send two bytes of length information through the channel, followed by the modified UTF-8 representation of every character in the parameter string.

A B C D F G H I L M N O P R S T U V W