- java.lang.Object
-
- javax.swing.text.AsyncBoxView.ChildState
-
- All Implemented Interfaces:
- Runnable
- Enclosing class:
- AsyncBoxView
public class AsyncBoxView.ChildState extends Object implements Runnable
A record representing the layout state of a child view. It is runnable as a task on another thread. All access to the child view that is based upon a read-lock on the model should synchronize on this object (i.e. The layout thread and the GUI thread can both have a read lock on the model at the same time and are not protected from each other). Access to a child view hierarchy is serialized via synchronization on the ChildState instance.- Since:
- 1.3
-
-
Constructor Summary
Constructors Constructor and Description AsyncBoxView.ChildState(View v)
Construct a child status.
-
Method Summary
Methods Modifier and Type Method and Description View
getChildView()
Fetch the child view this record representsfloat
getMajorOffset()
Get the offset along the major axisfloat
getMajorSpan()
What is the span along the major axis.float
getMinorOffset()
What is the offset along the minor axisfloat
getMinorSpan()
What is the span along the minor axis.boolean
isLayoutValid()
Has the child view been laid out.void
preferenceChanged(boolean width, boolean height)
Mark preferences changed for this child.void
run()
Update the child state.void
setMajorOffset(float offs)
This method should only be called by the ChildLocator, it is simply a convenient place to hold the cached location.
-
-
-
Constructor Detail
-
AsyncBoxView.ChildState
public AsyncBoxView.ChildState(View v)
Construct a child status. This needs to start out as fairly large so we don't falsely begin with the idea that all of the children are visible.- Since:
- 1.4
-
-
Method Detail
-
getChildView
public View getChildView()
Fetch the child view this record represents
-
run
public void run()
Update the child state. This should be called by the thread that desires to spend time updating the child state (intended to be the layout thread).This aquires 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:
- The child may have been removed from the view hierarchy.
- The child may have been updated by a higher priority operation (i.e. the child may have become visible).
- Specified by:
run
in interfaceRunnable
- See Also:
Thread.run()
-
getMinorSpan
public float getMinorSpan()
What is the span along the minor axis.
-
getMinorOffset
public float getMinorOffset()
What is the offset along the minor axis
-
getMajorSpan
public float getMajorSpan()
What is the span along the major axis.
-
getMajorOffset
public float getMajorOffset()
Get the offset along the major axis
-
setMajorOffset
public void setMajorOffset(float offs)
This method should only be called by the ChildLocator, it is simply a convenient place to hold the cached location.
-
preferenceChanged
public void preferenceChanged(boolean width, boolean height)
Mark preferences changed for this child.- Parameters:
width
- true if the width preference has changedheight
- true if the height preference has changed- See Also:
JComponent.revalidate()
-
isLayoutValid
public boolean isLayoutValid()
Has the child view been laid out.
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-javax/swing/text/asyncboxview.childstate.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.