Runnable
AsyncBoxView
public class AsyncBoxView.ChildState extends Object implements Runnable
Constructor | Description |
---|---|
ChildState |
Construct a child status. |
Modifier and Type | Method | Description |
---|---|---|
View |
getChildView() |
Fetch the child view this record represents. |
float |
getMajorOffset() |
Get the offset along the major axis. |
float |
getMajorSpan() |
What is the span along the major axis. |
float |
getMinorOffset() |
What is the offset along the minor axis |
float |
getMinorSpan() |
What is the span along the minor axis. |
boolean |
isLayoutValid() |
Has the child view been laid out. |
void |
preferenceChanged |
Mark preferences changed for this child. |
void |
run() |
Update the child state. |
void |
setMajorOffset |
This method should only be called by the ChildLocator, it is simply a convenient place to hold the cached location. |
public ChildState(View v)
v
- the viewpublic View getChildView()
public void run()
This acquires a read lock on the associated document for the duration of the update to ensure the model is not changed while it is operating. The first thing to do would be to see if any work actually needs to be done. The following could have conceivably happened while the state was waiting to be updated:
public float getMinorSpan()
public float getMinorOffset()
public float getMajorSpan()
public float getMajorOffset()
public void setMajorOffset(float offs)
offs
- offsetspublic void preferenceChanged(boolean width, boolean height)
width
- true if the width preference has changedheight
- true if the height preference has changedpublic boolean isLayoutValid()
© 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/AsyncBoxView.ChildState.html