SwingConstants
TableView
public class TableView.TableRow extends BoxView
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 |
---|---|
TableRow |
Constructs a TableView for the given element. |
Modifier and Type | Method | Description |
---|---|---|
int |
getResizeWeight |
Determines the resizability of the view along the given axis. |
protected View |
getViewAtPosition |
Fetches the child view that represents the given position in the model. |
protected void |
layoutMajorAxis |
Perform layout for the major axis of the box (i.e. the axis that it represents). |
protected void |
layoutMinorAxis |
Perform layout for the minor axis of the box (i.e. the axis orthogonal to the axis that it represents). |
void |
replace |
Change the child views. |
baselineLayout, baselineRequirements, calculateMajorAxisRequirements, calculateMinorAxisRequirements, childAllocation, flipEastAndWestAtEnds, forwardUpdate, getAlignment, getAxis, getChildAllocation, getHeight, getMaximumSpan, getMinimumSpan, getOffset, getPreferredSpan, getSpan, getViewAtPoint, getWidth, isAfter, isAllocationValid, isBefore, isLayoutValid, layout, layoutChanged, modelToView, paint, paintChild, preferenceChanged, setAxis, setSize, viewToModel
getBottomInset, getInsideAllocation, getLeftInset, getNextEastWestVisualPositionFrom, getNextNorthSouthVisualPositionFrom, getNextVisualPositionFrom, getRightInset, getTopInset, getView, getViewCount, getViewIndex, getViewIndexAtPosition, loadChildren, modelToView, setInsets, setParagraphInsets, setParent
append, breakView, changedUpdate, createFragment, forwardUpdateToView, getAttributes, getBreakWeight, getContainer, getDocument, getElement, getEndOffset, getGraphics, getParent, getStartOffset, getToolTipText, getViewFactory, getViewIndex, insert, insertUpdate, isVisible, modelToView, remove, removeAll, removeUpdate, updateChildren, updateLayout, viewToModel
public TableRow(Element elem)
elem
- the element that this view is responsible forpublic void replace(int offset, int length, View[] views)
replace
in class BoxView
offset
- the starting index into the child views to insert the new views; this should be a value >= 0 and <= getViewCountlength
- 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 null
to indicate no children are being added (useful to remove)protected void layoutMajorAxis(int targetSpan, int axis, int[] offsets, int[] spans)
This is re-implemented to give each child the span of the column width for the table, and to give cells that span multiple columns the multi-column span.
layoutMajorAxis
in class BoxView
targetSpan
- the total span given to the view, which would be used to layout the children.axis
- the axis being laid out.offsets
- the offsets from the origin of the view for each of the child views. This is a return value and is filled in by the implementation of this method.spans
- the span of each child view. This is a return value and is filled in by the implementation of this method.protected void layoutMinorAxis(int targetSpan, int axis, int[] offsets, int[] spans)
This is implemented to delegate to the superclass, then adjust the span for any cell that spans multiple rows.
layoutMinorAxis
in class BoxView
targetSpan
- the total span given to the view, which would be used to layout the children.axis
- the axis being laid out.offsets
- the offsets from the origin of the view for each of the child views. This is a return value and is filled in by the implementation of this method.spans
- the span of each child view. This is a return value and is filled in by the implementation of this method.public int getResizeWeight(int axis)
getResizeWeight
in class BoxView
axis
- may be either View.X_AXIS or View.Y_AXISIllegalArgumentException
- for an invalid axisprotected View getViewAtPosition(int pos, Rectangle a)
getViewAtPosition
in class CompositeView
pos
- the search position >= 0a
- the allocation to the table on entry, and the allocation of the view containing the position on exitnull
if there isn't one
© 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/TableView.TableRow.html