SwingConstants
, TabExpander
public class ParagraphView extends ParagraphView
FlowView.FlowStrategy
firstLineIndent
layoutPool, layoutSpan, strategy
BadBreakWeight, ExcellentBreakWeight, ForcedBreakWeight, GoodBreakWeight, X_AXIS, Y_AXIS
BOTTOM, CENTER, EAST, HORIZONTAL, LEADING, LEFT, NEXT, NORTH, NORTH_EAST, NORTH_WEST, PREVIOUS, RIGHT, SOUTH, SOUTH_EAST, SOUTH_WEST, TOP, TRAILING, VERTICAL, WEST
Constructor | Description |
---|---|
ParagraphView |
Constructs a ParagraphView for the given element. |
Modifier and Type | Method | Description |
---|---|---|
protected SizeRequirements |
calculateMinorAxisRequirements |
Calculate the needs for the paragraph along the minor axis. |
AttributeSet |
getAttributes() |
Fetches the attributes to use when rendering. |
float |
getMaximumSpan |
Determines the maximum span for this view along an axis. |
float |
getMinimumSpan |
Determines the minimum span for this view along an axis. |
float |
getPreferredSpan |
Determines the preferred span for this view. |
protected StyleSheet |
getStyleSheet() |
Convenient method to get the StyleSheet. |
boolean |
isVisible() |
Indicates whether or not this view should be displayed. |
void |
paint |
Renders using the given rendering surface and area on that surface. |
void |
setParent |
Establishes the parent view for this view. |
protected void |
setPropertiesFromAttributes() |
Sets up the paragraph from css attributes instead of the values found in StyleConstants (i.e. which are used by the superclass). |
breakView, changedUpdate, createRow, findOffsetToCharactersInString, flipEastAndWestAtEnds, getAlignment, getBreakWeight, getClosestPositionTo, getFlowSpan, getFlowStart, getLayoutView, getLayoutViewCount, getNextNorthSouthVisualPositionFrom, getPartialSize, getTabBase, getTabSet, nextTabStop, setFirstLineIndent, setJustification, setLineSpacing
getFlowAxis, getViewIndexAtPosition, insertUpdate, layout, loadChildren, removeUpdate
baselineLayout, baselineRequirements, calculateMajorAxisRequirements, childAllocation, forwardUpdate, getAxis, getChildAllocation, getHeight, getOffset, getResizeWeight, getSpan, getViewAtPoint, getWidth, isAfter, isAllocationValid, isBefore, isLayoutValid, layoutChanged, layoutMajorAxis, layoutMinorAxis, modelToView, paintChild, preferenceChanged, replace, setAxis, setSize, viewToModel
getBottomInset, getInsideAllocation, getLeftInset, getNextEastWestVisualPositionFrom, getNextVisualPositionFrom, getRightInset, getTopInset, getView, getViewAtPosition, getViewCount, getViewIndex, modelToView, setInsets, setParagraphInsets
append, breakView, createFragment, forwardUpdateToView, getBreakWeight, getContainer, getDocument, getElement, getEndOffset, getGraphics, getParent, getStartOffset, getToolTipText, getViewFactory, getViewIndex, insert, modelToView, remove, removeAll, updateChildren, updateLayout, viewToModel
public ParagraphView(Element elem)
elem
- the element that this view is responsible forpublic void setParent(View parent)
This is implemented to forward to the superclass as well as call the setPropertiesFromAttributes
method to set the paragraph properties from the css attributes. The call is made at this time to ensure the ability to resolve upward through the parents view attributes.
setParent
in class CompositeView
parent
- the new parent, or null if the view is being removed from a parent it was previously added topublic AttributeSet getAttributes()
getAttributes
in class View
protected void setPropertiesFromAttributes()
setPropertiesFromAttributes
in class ParagraphView
protected StyleSheet getStyleSheet()
protected SizeRequirements calculateMinorAxisRequirements(int axis, SizeRequirements r)
If size requirements are explicitly specified for the paragraph, use that requirements. Otherwise, use the requirements of the superclass ParagraphView
.
If the axis
parameter is neither View.X_AXIS
nor View.Y_AXIS
, IllegalArgumentException
is thrown. If the r
parameter is null,
a new SizeRequirements
object is created, otherwise the supplied SizeRequirements
object is returned.
calculateMinorAxisRequirements
in class ParagraphView
axis
- the minor axisr
- the input SizeRequirements
objectSizeRequirements
objectIllegalArgumentException
- if the axis
parameter is invalidpublic boolean isVisible()
public void paint(Graphics g, Shape a)
paint
in class ParagraphView
g
- the rendering surface to usea
- the allocated region to render intopublic float getPreferredSpan(int axis)
getPreferredSpan
in class BoxView
axis
- may be either View.X_AXIS or View.Y_AXISpublic float getMinimumSpan(int axis)
getMinimumSpan
in class BoxView
axis
- may be either View.X_AXIS
or View.Y_AXIS
public float getMaximumSpan(int axis)
getMaximumSpan
in class BoxView
axis
- may be either View.X_AXIS
or View.Y_AXIS
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/swing/text/html/ParagraphView.html