java.lang.Object
javax.swing.text.View
javax.swing.text.CompositeView
- All Implemented Interfaces:
- SwingConstants
- Direct Known Subclasses:
- BoxView
CompositeView is an abstract View
 implementation which manages one or more child views.
 (Note that CompositeView is intended
 for managing relatively small numbers of child views.)
 CompositeView is intended to be used as
 a starting point for View implementations,
 such as BoxView, that will contain child
 Views. Subclasses that wish to manage the
 collection of child Views should use the
 replace(int, int, javax.swing.text.View[]) method.  As View invokes
 replace during DocumentListener
 notification, you normally won't need to directly
 invoke replace.
 While CompositeView
 does not impose a layout policy on its child Views,
 it does allow for inseting the child Views
 it will contain.  The insets can be set by either
 setInsets(short, short, short, short) or setParagraphInsets(javax.swing.text.AttributeSet).
 
In addition to the abstract methods of
 View,
 subclasses of CompositeView will need to
 override:
 
- isBefore(int, int, java.awt.Rectangle)- Used to test if a given- Viewlocation is before the visual space of the- CompositeView.
- isAfter(int, int, java.awt.Rectangle)- Used to test if a given- Viewlocation is after the visual space of the- CompositeView.
- getViewAtPoint(int, int, java.awt.Rectangle)- Returns the view at a given visual location.
- childAllocation(int, java.awt.Rectangle)- Returns the bounds of a particular child- View.- getChildAllocationwill invoke- childAllocationafter offseting the bounds by the- Insets of the- CompositeView.
- 
Field SummaryFields declared in class javax.swing.text.ViewBadBreakWeight, ExcellentBreakWeight, ForcedBreakWeight, GoodBreakWeight, X_AXIS, Y_AXISFields declared in interface javax.swing.SwingConstantsBOTTOM, CENTER, EAST, HORIZONTAL, LEADING, LEFT, NEXT, NORTH, NORTH_EAST, NORTH_WEST, PREVIOUS, RIGHT, SOUTH, SOUTH_EAST, SOUTH_WEST, TOP, TRAILING, VERTICAL, WEST
- 
Constructor SummaryConstructorsConstructorDescriptionCompositeView(Element elem) Constructs aCompositeViewfor the given element.
- 
Method SummaryModifier and TypeMethodDescriptionprotected abstract voidchildAllocation(int index, Rectangle a) Returns the allocation for a given child.protected booleanflipEastAndWestAtEnds(int position, Position.Bias bias) Determines in which direction the next view lays.protected shortGets the bottom inset.getChildAllocation(int index, Shape a) Fetches the allocation for the given child view to render into.protected RectangleTranslates the immutable allocation given to the view to a mutable allocation that represents the interior allocation (i.e. the bounds of the given allocation with the top, left, bottom, and right insets removed.protected shortGets the left inset.protected intgetNextEastWestVisualPositionFrom(int pos, Position.Bias b, Shape a, int direction, Position.Bias[] biasRet) Returns the next visual position for the cursor, in either the east or west direction.protected intgetNextNorthSouthVisualPositionFrom(int pos, Position.Bias b, Shape a, int direction, Position.Bias[] biasRet) Returns the next visual position for the cursor, in either the north or south direction.intgetNextVisualPositionFrom(int pos, Position.Bias b, Shape a, int direction, Position.Bias[] biasRet) Provides a way to determine the next visually represented model location that one might place a caret.protected shortGets the right inset.protected shortGets the top inset.getView(int n) Returns the n-th view in this container.protected abstract ViewgetViewAtPoint(int x, int y, Rectangle alloc) Fetches the child view at the given coordinates.protected ViewgetViewAtPosition(int pos, Rectangle a) Fetches the child view that represents the given position in the model.intReturns the number of child views of this view.intgetViewIndex(int pos, Position.Bias b) Returns the child view index representing the given position in the model.protected intgetViewIndexAtPosition(int pos) Fetches the child view index representing the given position in the model.protected abstract booleanTests whether a point lies after the rectangle range.protected abstract booleanTests whether a point lies before the rectangle range.protected voidLoads all of the children to initialize the view.modelToView(int pos, Shape a, Position.Bias b) Provides a mapping from the document model coordinate space to the coordinate space of the view mapped to it.modelToView(int p0, Position.Bias b0, int p1, Position.Bias b1, Shape a) Provides a mapping from the document model coordinate space to the coordinate space of the view mapped to it.voidReplaces child views.protected voidsetInsets(short top, short left, short bottom, short right) Sets the insets for the view.protected voidSets the insets from the paragraph attributes specified in the given attributes.voidSets the parent of the view.intviewToModel(float x, float y, Shape a, Position.Bias[] bias) Provides a mapping from the view coordinate space to the logical coordinate space of the model.Methods declared in class javax.swing.text.Viewappend, breakView, changedUpdate, createFragment, forwardUpdate, forwardUpdateToView, getAlignment, getAttributes, getBreakWeight, getContainer, getDocument, getElement, getEndOffset, getGraphics, getMaximumSpan, getMinimumSpan, getParent, getPreferredSpan, getResizeWeight, getStartOffset, getToolTipText, getViewFactory, getViewIndex, insert, insertUpdate, isVisible, modelToView, paint, preferenceChanged, remove, removeAll, removeUpdate, setSize, updateChildren, updateLayout, viewToModel
- 
Constructor Details- 
CompositeViewConstructs aCompositeViewfor the given element.- Parameters:
- elem- the element this view is responsible for
 
 
- 
- 
Method Details- 
loadChildrenLoads all of the children to initialize the view. This is called by thesetParent(javax.swing.text.View)method. Subclasses can reimplement this to initialize their child views in a different manner. The default implementation creates a child view for each child element.- Parameters:
- f- the view factory
- See Also:
 
- 
setParentSets the parent of the view. This is reimplemented to provide the superclass behavior as well as calling theloadChildrenmethod if this view does not already have children. The children should not be loaded in the constructor because the act of setting the parent may cause them to try to search up the hierarchy (to get the hostingContainerfor example). If this view has children (the view is being moved from one place in the view hierarchy to another), theloadChildrenmethod will not be called.
- 
getViewCountpublic int getViewCount()Returns the number of child views of this view.- Overrides:
- getViewCountin class- View
- Returns:
- the number of views >= 0
- See Also:
 
- 
getViewReturns the n-th view in this container.
- 
replaceReplaces child views. If there are no views to remove this acts as an insert. If there are no views to add this acts as a remove. Views being removed will have the parent set tonull, and the internal reference to them removed so that they may be garbage collected.- Overrides:
- replacein class- View
- Parameters:
- offset- the starting index into the child views to insert the new views; >= 0 and <= getViewCount
- length- the number of existing child views to remove; this should be a value >= 0 and <= (getViewCount() - offset)
- views- the child views to add; this value can be- nullto indicate no children are being added (useful to remove)
 
- 
getChildAllocationFetches the allocation for the given child view to render into. This enables finding out where various views are located.- Overrides:
- getChildAllocationin class- View
- Parameters:
- index- the index of the child, >= 0 && < getViewCount()
- a- the allocation to this view
- Returns:
- the allocation to the child
 
- 
modelToViewProvides a mapping from the document model coordinate space to the coordinate space of the view mapped to it.- Specified by:
- modelToViewin class- View
- Parameters:
- pos- the position to convert >= 0
- a- the allocated region to render into
- b- a bias value of either- Position.Bias.Forwardor- Position.Bias.Backward
- Returns:
- the bounding box of the given position
- Throws:
- BadLocationException- if the given position does not represent a valid location in the associated document
- See Also:
 
- 
modelToViewpublic Shape modelToView(int p0, Position.Bias b0, int p1, Position.Bias b1, Shape a) throws BadLocationException Provides a mapping from the document model coordinate space to the coordinate space of the view mapped to it.- Overrides:
- modelToViewin class- View
- Parameters:
- p0- the position to convert >= 0
- b0- the bias toward the previous character or the next character represented by p0, in case the position is a boundary of two views; either- Position.Bias.Forwardor- Position.Bias.Backward
- p1- the position to convert >= 0
- b1- the bias toward the previous character or the next character represented by p1, in case the position is a boundary of two views
- a- the allocated region to render into
- Returns:
- the bounding box of the given position is returned
- Throws:
- BadLocationException- if the given position does not represent a valid location in the associated document
- IllegalArgumentException- for an invalid bias argument
- See Also:
 
- 
viewToModelProvides a mapping from the view coordinate space to the logical coordinate space of the model.- Specified by:
- viewToModelin class- View
- Parameters:
- x- x coordinate of the view location to convert >= 0
- y- y coordinate of the view location to convert >= 0
- a- the allocated region to render into
- bias- either- Position.Bias.Forwardor- Position.Bias.Backward
- Returns:
- the location within the model that best represents the given point in the view >= 0
- See Also:
 
- 
getNextVisualPositionFrompublic int getNextVisualPositionFrom(int pos, Position.Bias b, Shape a, int direction, Position.Bias[] biasRet) throws BadLocationException Provides a way to determine the next visually represented model location that one might place a caret. Some views may not be visible, they might not be in the same order found in the model, or they just might not allow access to some of the locations in the model. This is a convenience method forgetNextNorthSouthVisualPositionFrom(int, javax.swing.text.Position.Bias, java.awt.Shape, int, javax.swing.text.Position.Bias[])andgetNextEastWestVisualPositionFrom(int, javax.swing.text.Position.Bias, java.awt.Shape, int, javax.swing.text.Position.Bias[]). This method enables specifying a position to convert within the range of >=0. If the value is -1, a position will be calculated automatically. If the value < -1, theBadLocationExceptionwill be thrown.- Overrides:
- getNextVisualPositionFromin class- View
- Parameters:
- pos- the position to convert
- b- a bias value of either- Position.Bias.Forwardor- Position.Bias.Backward
- a- the allocated region to render into
- direction- the direction from the current position that can be thought of as the arrow keys typically found on a keyboard; this may be one of the following:- SwingConstants.WEST
- SwingConstants.EAST
- SwingConstants.NORTH
- SwingConstants.SOUTH
 
- biasRet- an array containing the bias that was checked
- Returns:
- the location within the model that best represents the next location visual position
- Throws:
- BadLocationException- the given position is not a valid position within the document
- IllegalArgumentException- if- directionis invalid
 
- 
getViewIndexReturns the child view index representing the given position in the model. This is implemented to call thegetViewIndexByPositionmethod for backward compatibility.- Overrides:
- getViewIndexin class- View
- Parameters:
- pos- the position >= 0
- b- the bias
- Returns:
- index of the view representing the given position, or -1 if no view represents that position
- Since:
- 1.3
 
- 
isBeforeTests whether a point lies before the rectangle range.- Parameters:
- x- the X coordinate >= 0
- y- the Y coordinate >= 0
- alloc- the rectangle
- Returns:
- true if the point is before the specified range
 
- 
isAfterTests whether a point lies after the rectangle range.- Parameters:
- x- the X coordinate >= 0
- y- the Y coordinate >= 0
- alloc- the rectangle
- Returns:
- true if the point is after the specified range
 
- 
getViewAtPointFetches the child view at the given coordinates.- Parameters:
- x- the X coordinate >= 0
- y- the Y coordinate >= 0
- alloc- the parent's allocation on entry, which should be changed to the child's allocation on exit
- Returns:
- the child view
 
- 
childAllocationReturns the allocation for a given child.- Parameters:
- index- the index of the child, >= 0 && < getViewCount()
- a- the allocation to the interior of the box on entry, and the allocation of the child view at the index on exit.
 
- 
getViewAtPositionFetches the child view that represents the given position in the model. This is implemented to fetch the view in the case where there is a child view for each child element.- Parameters:
- pos- the position >= 0
- a- the allocation to the interior of the box on entry, and the allocation of the view containing the position on exit
- Returns:
- the view representing the given position, or
   nullif there isn't one
 
- 
getViewIndexAtPositionprotected int getViewIndexAtPosition(int pos) Fetches the child view index representing the given position in the model. This is implemented to fetch the view in the case where there is a child view for each child element.- Parameters:
- pos- the position >= 0
- Returns:
- index of the view representing the given position, or -1 if no view represents that position
 
- 
getInsideAllocationTranslates the immutable allocation given to the view to a mutable allocation that represents the interior allocation (i.e. the bounds of the given allocation with the top, left, bottom, and right insets removed. It is expected that the returned value would be further mutated to represent an allocation to a child view. This is implemented to reuse an instance variable so it avoids creating excessive Rectangles. Typically the result of calling this method would be fed to thechildAllocationmethod.- Parameters:
- a- the allocation given to the view
- Returns:
- the allocation that represents the inside of the
   view after the margins have all been removed; if the
   given allocation was null, the return value isnull
 
- 
setParagraphInsetsSets the insets from the paragraph attributes specified in the given attributes.- Parameters:
- attr- the attributes
 
- 
setInsetsprotected void setInsets(short top, short left, short bottom, short right) Sets the insets for the view.- Parameters:
- top- the top inset >= 0
- left- the left inset >= 0
- bottom- the bottom inset >= 0
- right- the right inset >= 0
 
- 
getLeftInsetprotected short getLeftInset()Gets the left inset.- Returns:
- the inset >= 0
 
- 
getRightInsetprotected short getRightInset()Gets the right inset.- Returns:
- the inset >= 0
 
- 
getTopInsetprotected short getTopInset()Gets the top inset.- Returns:
- the inset >= 0
 
- 
getBottomInsetprotected short getBottomInset()Gets the bottom inset.- Returns:
- the inset >= 0
 
- 
getNextNorthSouthVisualPositionFromprotected int getNextNorthSouthVisualPositionFrom(int pos, Position.Bias b, Shape a, int direction, Position.Bias[] biasRet) throws BadLocationException Returns the next visual position for the cursor, in either the north or south direction.- Parameters:
- pos- the position to convert >= 0
- b- a bias value of either- Position.Bias.Forwardor- Position.Bias.Backward
- a- the allocated region to render into
- direction- the direction from the current position that can be thought of as the arrow keys typically found on a keyboard; this may be one of the following:- SwingConstants.NORTH
- SwingConstants.SOUTH
 
- biasRet- an array containing the bias that was checked
- Returns:
- the location within the model that best represents the next north or south location
- Throws:
- BadLocationException- for a bad location within a document model
- IllegalArgumentException- if- directionis invalid
- See Also:
 
- 
getNextEastWestVisualPositionFromprotected int getNextEastWestVisualPositionFrom(int pos, Position.Bias b, Shape a, int direction, Position.Bias[] biasRet) throws BadLocationException Returns the next visual position for the cursor, in either the east or west direction.- Parameters:
- pos- the position to convert >= 0
- b- a bias value of either- Position.Bias.Forwardor- Position.Bias.Backward
- a- the allocated region to render into
- direction- the direction from the current position that can be thought of as the arrow keys typically found on a keyboard; this may be one of the following:- SwingConstants.WEST
- SwingConstants.EAST
 
- biasRet- an array containing the bias that was checked
- Returns:
- the location within the model that best represents the next west or east location
- Throws:
- BadLocationException- for a bad location within a document model
- IllegalArgumentException- if- directionis invalid
- See Also:
 
- 
flipEastAndWestAtEndsDetermines in which direction the next view lays. Consider theViewat index n. Typically theViews are layed out from left to right, so that theViewto the EAST will be at index n + 1, and theViewto the WEST will be at index n - 1. In certain situations, such as with bidirectional text, it is possible that theViewto EAST is not at index n + 1, but rather at index n - 1, or that theViewto the WEST is not at index n - 1, but index n + 1. In this case this method would return true, indicating theViews are layed out in descending order.This unconditionally returns false, subclasses should override this method if there is the possibility for laying Views in descending order.- Parameters:
- position- position into the model
- bias- either- Position.Bias.Forwardor- Position.Bias.Backward
- Returns:
- false
 
 
-