public class BoundedRangeInputStream extends FilterInputStream implements BoundedRangeModel
| Modifier and Type | Field and Description |
|---|---|
protected ChangeEvent |
changeEvent_
Only one ChangeEvent is needed per model instance since the
event's only (read-only) state is the source property.
|
protected EventListenerList |
listenerList_
The listeners waiting for model changes.
|
in| Constructor and Description |
|---|
BoundedRangeInputStream(InputStream in)
Create a new instance.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addChangeListener(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.
|
int |
read()
Overrides
FilterInputStream.read
to update the value after the read. |
int |
read(byte[] b)
Overrides
FilterInputStream.read
to update the value after the read. |
int |
read(byte[] b,
int off,
int len)
Overrides
FilterInputStream.read
to update the value after the read. |
void |
removeChangeListener(ChangeListener l)
Removes a ChangeListener.
|
void |
reset()
Overrides
FilterInputStream.reset
to reset the progress monitor as well as 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)
Overrides
FilterInputStream.skip
to update the value after the skip. |
available, close, mark, markSupportedprotected transient ChangeEvent changeEvent_
protected EventListenerList listenerList_
public BoundedRangeInputStream(InputStream in)
public int read()
throws IOException
FilterInputStream.read
to update the value after the read.read in class FilterInputStreamIOExceptionpublic int read(byte[] b)
throws IOException
FilterInputStream.read
to update the value after the read.read in class FilterInputStreamIOExceptionpublic int read(byte[] b,
int off,
int len)
throws IOException
FilterInputStream.read
to update the value after the read.read in class FilterInputStreamIOExceptionpublic long skip(long n)
throws IOException
FilterInputStream.skip
to update the value after the skip.skip in class FilterInputStreamIOExceptionpublic void reset()
throws IOException
FilterInputStream.reset
to reset the progress monitor as well as the stream.reset in class FilterInputStreamIOExceptionpublic int getMinimum()
getMinimum in interface BoundedRangeModelsetMinimum(int)public void setMinimum(int newMinimum)
minimum <= value <= value+extent <= maximum
Notifies any listeners if the model changes.
setMinimum in interface BoundedRangeModelnewMinimum - the model's new minimumgetMinimum(),
addChangeListener(javax.swing.event.ChangeListener)public int getMaximum()
getMaximum in interface BoundedRangeModelsetMaximum(int),
setExtent(int)public void setMaximum(int newMaximum)
minimum <= value <= value+extent <= maximum
Notifies any listeners if the model changes.
setMaximum in interface 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 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 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 BoundedRangeModelb - true if the upcoming changes to the value property are part of a seriespublic boolean getValueIsAdjusting()
getValueIsAdjusting in interface BoundedRangeModelsetValueIsAdjusting(boolean)public int getExtent()
getExtent in interface 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 BoundedRangeModelnewExtent - the model's new extentgetExtent(),
setValue(int)public void setRangeProperties(int value,
int extent,
int min,
int max,
boolean adjusting)
setRangeProperties in interface 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(ChangeListener l)
addChangeListener in interface BoundedRangeModell - the ChangeListener to addremoveChangeListener(javax.swing.event.ChangeListener)public void removeChangeListener(ChangeListener l)
removeChangeListener in interface BoundedRangeModell - the ChangeListener to removeaddChangeListener(javax.swing.event.ChangeListener),
BoundedRangeModel.removeChangeListener(javax.swing.event.ChangeListener)protected void fireStateChanged()
Copyright © 2014. All Rights Reserved.