|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--javax.swing.text.View | +--javax.swing.text.CompositeView | +--javax.swing.text.BoxView | +--javax.swing.text.ZoneView
Safe: ZoneView is a View implementation that creates zones for which the child views are not created or stored until they are needed for display or model/view translations. This enables a substantial reduction in memory consumption for situations where the model being represented is very large, by building view objects only for the region being actively viewed/edited. The size of the children can be estimated in some way, or calculated asynchronously with only the result being saved.
ZoneView extends BoxView to provide a box that implements zones for it's children. The zones are special View implementations (the children of an instance of this class) that represent only a portion of the model that an instance of ZoneView is responsible for. The zones don't create child views until an attempt is made to display them. A box shaped view is well suited to this because:
The default behavior is controled by two properties, maxZoneSize and maxZonesLoaded. Setting maxZoneSize to Integer.MAX_VALUE would have the effect of causing only one zone to be created. This would effectively turn the view into an implementation of the decorator pattern. Setting maxZonesLoaded to a value of Integer.MAX_VALUE would cause zones to never be unloaded. For simplicity, zones are created on boundaries represented by the child elements of the element the view is responsible for. The zones can be any View implementation, but the default implementation is based upon AsyncBoxView which supports fairly large zones efficiently.
View
Field Summary | |
(package private) Vector |
loadedZones
|
(package private) int |
maxZoneSize
|
(package private) int |
maxZonesLoaded
|
Fields inherited from class javax.swing.text.BoxView |
majorAllocValid, majorAxis, majorOffsets, majorRequest, majorReqValid, majorSpan, majorSpans, minorAllocValid, minorOffsets, minorRequest, minorReqValid, minorSpan, minorSpans, tempRect |
Fields inherited from class javax.swing.text.CompositeView |
|
Fields inherited from class javax.swing.text.View |
BadBreakWeight, ExcellentBreakWeight, ForcedBreakWeight, GoodBreakWeight, sharedBiasReturn, X_AXIS, Y_AXIS |
Fields inherited from interface javax.swing.SwingConstants |
BOTTOM, CENTER, EAST, HORIZONTAL, LEADING, LEFT, NEXT, NORTH, NORTH_EAST, NORTH_WEST, PREVIOUS, RIGHT, SOUTH, SOUTH_EAST, SOUTH_WEST, TOP, TRAILING, VERTICAL, WEST |
Constructor Summary | |
ZoneView(Element elem,
int axis)
Enabled: Constructs a ZoneView. |
Method Summary | |
protected View |
createZone(int p0,
int p1)
Create a view to represent a zone for the given range within the model (which should be within the range of this objects responsibility). |
(package private) int |
getDesiredZoneEnd(int pos)
Returns the zone position to use for the end of a zone that starts at the given position. |
int |
getMaximumZoneSize()
Enabled: Get the current maximum zone size. |
int |
getMaxZonesLoaded()
Enabled: Get the current setting of the number of zones allowed to be loaded at the same time. |
protected int |
getViewIndexAtPosition(int pos)
Returns the child view index representing the given position in the model. |
(package private) void |
handleInsert(int pos,
int length)
|
(package private) void |
handleRemove(int pos,
int length)
|
void |
insertUpdate(DocumentEvent changes,
Shape a,
ViewFactory f)
Suppressed: Gives notification that something was inserted into the document in a location that this view is responsible for. |
protected boolean |
isZoneLoaded(View zone)
Determine if a zone is in the loaded state. |
protected void |
loadChildren(ViewFactory f)
Loads all of the children to initialize the view. |
void |
removeUpdate(DocumentEvent changes,
Shape a,
ViewFactory f)
Suppressed: Gives notification that something was removed from the document in a location that this view is responsible for. |
void |
setMaximumZoneSize(int size)
Enabled: Set the desired maximum zone size. |
void |
setMaxZonesLoaded(int mzl)
Enabled: Sets the current setting of the number of zones allowed to be loaded at the same time. |
(package private) void |
splitZone(int index,
int offs0,
int offs1)
Break up the zone at the given index into pieces of an acceptable size. |
(package private) void |
unloadOldZones()
|
protected void |
unloadZone(View zone)
Unload a zone (Convert the zone to its memory saving state). |
protected boolean |
updateChildren(javax.swing.event.DocumentEvent.ElementChange ec,
DocumentEvent e,
ViewFactory f)
The superclass behavior will try to update the child views which is not desired in this case, since the children are zones and not directly effected by the changes to the associated element. |
protected void |
zoneWasLoaded(View zone)
Called by a zone when it gets loaded. |
Methods inherited from class javax.swing.text.CompositeView |
getBottomInset, getInsideAllocation, getLeftInset, getNextEastWestVisualPositionFrom, getNextNorthSouthVisualPositionFrom, getNextVisualPositionFrom, getRightInset, getTopInset, getView, getViewAtPosition, getViewCount, getViewIndex, modelToView, setInsets, setParagraphInsets, setParent |
Methods inherited from class javax.swing.text.View |
append, breakView, changedUpdate, createFragment, forwardUpdateToView, getAttributes, getBreakWeight, getContainer, getDocument, getElement, getEndOffset, getGraphics, getParent, getStartOffset, getToolTipText, getViewFactory, getViewIndex, insert, isVisible, modelToView, remove, removeAll, updateLayout, viewToModel |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
int maxZoneSize
int maxZonesLoaded
Vector loadedZones
Constructor Detail |
public ZoneView(Element elem, int axis)
elem
- the element this view is responsible foraxis
- either View.X_AXIS or View.Y_AXISMethod Detail |
public int getMaximumZoneSize()
public void setMaximumZoneSize(int size)
size
- the number of characters the zone
may represent before attempting to break
the zone into a smaller size.public int getMaxZonesLoaded()
public void setMaxZonesLoaded(int mzl)
IllegalArgumentException
if mzl
is less
than 1.
mzl
- the desired maximum number of zones
to be actively loaded, must be greater than 0protected void zoneWasLoaded(View zone)
zone
- the child view that was just loaded.void unloadOldZones()
protected void unloadZone(View zone)
zone
- the child view desired to be set to an
unloaded state.protected boolean isZoneLoaded(View zone)
protected View createZone(int p0, int p1)
p0
- the start of the desired zone. This should
be >= getStartOffset() and < getEndOffset(). This
value should also be < p1.p1
- the end of the desired zone. This should
be > getStartOffset() and <= getEndOffset(). This
value should also be > p0.protected void loadChildren(ViewFactory f)
setParent
method.
This is reimplemented to not load any children directly
(as they are created by the zones). This method creates
the initial set of zones. Zones don't actually get
populated however until an attempt is made to display
them or to do model/view coordinate translation.
loadChildren
in class CompositeView
f
- the view factoryCompositeView.setParent(javax.swing.text.View)
protected int getViewIndexAtPosition(int pos)
getViewIndexAtPosition
in class CompositeView
pos
- the position >= 0
void handleInsert(int pos, int length)
void handleRemove(int pos, int length)
void splitZone(int index, int offs0, int offs1)
int getDesiredZoneEnd(int pos)
protected boolean updateChildren(javax.swing.event.DocumentEvent.ElementChange ec, DocumentEvent e, ViewFactory f)
updateChildren
in class View
ec
- the change information for the element this view
is responsible for. This should not be null
if
this method gets callede
- the change information from the associated documentf
- the factory to use to build child views
View.insertUpdate(javax.swing.event.DocumentEvent, java.awt.Shape, javax.swing.text.ViewFactory)
,
View.removeUpdate(javax.swing.event.DocumentEvent, java.awt.Shape, javax.swing.text.ViewFactory)
,
View.changedUpdate(javax.swing.event.DocumentEvent, java.awt.Shape, javax.swing.text.ViewFactory)
public void insertUpdate(DocumentEvent changes, Shape a, ViewFactory f)
insertUpdate
in class View
changes
- the change information from the associated documenta
- the current allocation of the viewf
- the factory to use to rebuild if the view has childrenView.insertUpdate(javax.swing.event.DocumentEvent, java.awt.Shape, javax.swing.text.ViewFactory)
public void removeUpdate(DocumentEvent changes, Shape a, ViewFactory f)
removeUpdate
in class View
changes
- the change information from the associated documenta
- the current allocation of the viewf
- the factory to use to rebuild if the view has childrenView.removeUpdate(javax.swing.event.DocumentEvent, java.awt.Shape, javax.swing.text.ViewFactory)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |