|
CubeTwister 2.0alpha130 2010-08-17 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.io.Reader
java.io.FilterReader
ch.randelshofer.io.BoundedRangeReader
public class BoundedRangeReader
BoundedRangeReader.
| Field Summary | |
|---|---|
protected javax.swing.event.ChangeEvent |
changeEvent
Only one ChangeEvent is needed per model instance since the event's only (read-only) state is the source property. |
protected javax.swing.event.EventListenerList |
listenerList
The listeners waiting for model changes. |
| Fields inherited from class java.io.FilterReader |
|---|
in |
| Fields inherited from class java.io.Reader |
|---|
lock |
| Constructor Summary | |
|---|---|
BoundedRangeReader(java.io.File file,
boolean isBuffered)
Create a new instance. |
|
BoundedRangeReader(java.io.File file,
java.io.Reader in)
Creates a new instance. |
|
BoundedRangeReader(java.io.File file,
java.lang.String charsetName,
boolean isBuffered)
Create a new instance. |
|
BoundedRangeReader(java.io.Reader in)
Create a new instance. |
|
| Method Summary | |
|---|---|
void |
addChangeListener(javax.swing.event.ChangeListener l)
Adds a ChangeListener to the model's listener list. |
protected void |
fireStateChanged()
Run each ChangeListeners stateChanged() method. |
int |
getExtent()
Returns the model's extent, the length of the inner range that begins at the model's value. |
int |
getMaximum()
Returns the model's maximum. |
int |
getMinimum()
Returns the minimum acceptable value. |
int |
getValue()
Returns the current read position. |
boolean |
getValueIsAdjusting()
Returns true if the current changes to the value property are part of a series of changes. |
void |
mark(int readAheadLimit)
Mark the present position in the stream. |
boolean |
markSupported()
Tell whether this stream supports the mark() operation. |
int |
read()
Read a single character. |
int |
read(char[] cbuf,
int off,
int len)
Read characters into a portion of an array. |
void |
removeChangeListener(javax.swing.event.ChangeListener l)
Removes a ChangeListener. |
void |
reset()
Reset the stream. |
void |
setExtent(int newExtent)
Ignored: The extent is always zero. |
void |
setMaximum(int newMaximum)
Ignored: The maximum of an input stream can not be changed. |
void |
setMinimum(int newMinimum)
Ignored: The minimum of an input stream is always zero. |
void |
setRangeProperties(int value,
int extent,
int min,
int max,
boolean adjusting)
Ignored: All values depend on the input stream. |
void |
setValue(int newValue)
Ignored: The value is always zero. |
void |
setValueIsAdjusting(boolean b)
This attribute indicates that any upcoming changes to the value of the model should be considered a single event. |
long |
skip(long n)
Skip characters. |
| Methods inherited from class java.io.FilterReader |
|---|
close, ready |
| Methods inherited from class java.io.Reader |
|---|
read, read |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected transient javax.swing.event.ChangeEvent changeEvent
protected javax.swing.event.EventListenerList listenerList
| Constructor Detail |
|---|
public BoundedRangeReader(java.io.File file,
boolean isBuffered)
throws java.io.IOException
java.io.IOException
public BoundedRangeReader(java.io.File file,
java.lang.String charsetName,
boolean isBuffered)
throws java.io.IOException
java.io.IOException
public BoundedRangeReader(java.io.File file,
java.io.Reader in)
throws java.io.IOException
file - The file is used to determine the maximum value of the bounded
range model. The maximum value is only approximate, because the characters
may be encoded by multiple bytes.
java.io.IOException
public BoundedRangeReader(java.io.Reader in)
throws java.io.IOException
java.io.IOException| Method Detail |
|---|
public int read()
throws java.io.IOException
read in class java.io.FilterReaderjava.io.IOException - If an I/O error occurs
public int read(char[] cbuf,
int off,
int len)
throws java.io.IOException
read in class java.io.FilterReaderjava.io.IOException - If an I/O error occurs
public long skip(long n)
throws java.io.IOException
skip in class java.io.FilterReaderjava.io.IOException - If an I/O error occurspublic boolean markSupported()
markSupported in class java.io.FilterReader
public void mark(int readAheadLimit)
throws java.io.IOException
mark in class java.io.FilterReaderjava.io.IOException - If an I/O error occurs
public void reset()
throws java.io.IOException
reset in class java.io.FilterReaderjava.io.IOException - If an I/O error occurspublic int getMinimum()
getMinimum in interface javax.swing.BoundedRangeModelsetMinimum(int)public void setMinimum(int newMinimum)
minimum <= value <= value+extent <= maximum
Notifies any listeners if the model changes.
setMinimum in interface javax.swing.BoundedRangeModelnewMinimum - the model's new minimumgetMinimum(),
addChangeListener(javax.swing.event.ChangeListener)public int getMaximum()
getMaximum in interface javax.swing.BoundedRangeModelsetMaximum(int),
setExtent(int)public void setMaximum(int newMaximum)
minimum <= value <= value+extent <= maximum
Notifies any listeners if the model changes.
setMaximum in interface javax.swing.BoundedRangeModelnewMaximum - the model's new maximumgetMaximum(),
addChangeListener(javax.swing.event.ChangeListener)public int getValue()
maximum - extent
and the lower limit is minimum.
getValue in interface javax.swing.BoundedRangeModelsetValue(int)public void setValue(int newValue)
newValue if newValue
satisfies the model's constraints. Those constraints are:
minimum <= value <= value+extent <= maximumOtherwise, if
newValue is less than minimum
it's set to minimum, if its greater than
maximum then it's set to maximum, and
if it's greater than value+extent then it's set to
value+extent.
When a BoundedRange model is used with a scrollbar the value specifies the origin of the scrollbar knob (aka the "thumb" or "elevator"). The value usually represents the origin of the visible part of the object being scrolled.
Notifies any listeners if the model changes.
setValue in interface javax.swing.BoundedRangeModelnewValue - the model's new valuegetValue()public void setValueIsAdjusting(boolean b)
Sliders and scrollbars use this property when a drag is underway.
setValueIsAdjusting in interface javax.swing.BoundedRangeModelb - true if the upcoming changes to the value property are part of a seriespublic boolean getValueIsAdjusting()
getValueIsAdjusting in interface javax.swing.BoundedRangeModelsetValueIsAdjusting(boolean)public int getExtent()
getExtent in interface javax.swing.BoundedRangeModelsetExtent(int),
setValue(int)public void setExtent(int newExtent)
When a BoundedRange model is used with a scrollbar the extent defines the length of the scrollbar knob (aka the "thumb" or "elevator"). The extent usually represents how much of the object being scrolled is visible. When used with a slider, the extent determines how much the value can "jump", for example when the user presses PgUp or PgDn.
Notifies any listeners if the model changes.
setExtent in interface javax.swing.BoundedRangeModelnewExtent - the model's new extentgetExtent(),
setValue(int)
public void setRangeProperties(int value,
int extent,
int min,
int max,
boolean adjusting)
setRangeProperties in interface javax.swing.BoundedRangeModelvalue - an int giving the current valueextent - an int giving the amount by which the value can "jump"min - an int giving the minimum valuemax - an int giving the maximum valueadjusting - a boolean, true if a series of changes are in
progresssetValue(int),
setExtent(int),
setMinimum(int),
setMaximum(int),
setValueIsAdjusting(boolean)public void addChangeListener(javax.swing.event.ChangeListener l)
addChangeListener in interface javax.swing.BoundedRangeModell - the ChangeListener to addremoveChangeListener(javax.swing.event.ChangeListener)public void removeChangeListener(javax.swing.event.ChangeListener l)
removeChangeListener in interface javax.swing.BoundedRangeModell - the ChangeListener to removeaddChangeListener(javax.swing.event.ChangeListener),
BoundedRangeModel.removeChangeListener(javax.swing.event.ChangeListener)protected void fireStateChanged()
setRangeProperties(int, int, int, int, boolean),
EventListenerList
|
Copyright 2003-2009 (c) Werner Randelshofer. All rights reserved. |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||