-
- All Known Implementing Classes:
- StyleContext, StyleSheet
- Enclosing class:
- AbstractDocument
public static interface AbstractDocument.AttributeContext
An interface that can be used to allow MutableAttributeSet implementations to use pluggable attribute compression techniques. Each mutation of the attribute set can be used to exchange a previous AttributeSet instance with another, preserving the possibility of the AttributeSet remaining immutable. An implementation is provided by the StyleContext class. The Element implementations provided by this class use this interface to provide their MutableAttributeSet implementations, so that different AttributeSet compression techniques can be employed. The methodgetAttributeContext
should be implemented to return the object responsible for implementing the desired compression technique.- See Also:
StyleContext
-
-
Method Summary
Methods Modifier and Type Method and Description AttributeSet
addAttribute(AttributeSet old, Object name, Object value)
Adds an attribute to the given set, and returns the new representative set.AttributeSet
addAttributes(AttributeSet old, AttributeSet attr)
Adds a set of attributes to the element.AttributeSet
getEmptySet()
Fetches an empty AttributeSet.void
reclaim(AttributeSet a)
Reclaims an attribute set.AttributeSet
removeAttribute(AttributeSet old, Object name)
Removes an attribute from the set.AttributeSet
removeAttributes(AttributeSet old, AttributeSet attrs)
Removes a set of attributes for the element.AttributeSet
removeAttributes(AttributeSet old, Enumeration<?> names)
Removes a set of attributes for the element.
-
-
-
Method Detail
-
addAttribute
AttributeSet addAttribute(AttributeSet old, Object name, Object value)
Adds an attribute to the given set, and returns the new representative set.- Parameters:
old
- the old attribute setname
- the non-null attribute namevalue
- the attribute value- Returns:
- the updated attribute set
- See Also:
MutableAttributeSet.addAttribute(java.lang.Object, java.lang.Object)
-
addAttributes
AttributeSet addAttributes(AttributeSet old, AttributeSet attr)
Adds a set of attributes to the element.- Parameters:
old
- the old attribute setattr
- the attributes to add- Returns:
- the updated attribute set
- See Also:
MutableAttributeSet.addAttribute(java.lang.Object, java.lang.Object)
-
removeAttribute
AttributeSet removeAttribute(AttributeSet old, Object name)
Removes an attribute from the set.- Parameters:
old
- the old attribute setname
- the non-null attribute name- Returns:
- the updated attribute set
- See Also:
MutableAttributeSet.removeAttribute(java.lang.Object)
-
removeAttributes
AttributeSet removeAttributes(AttributeSet old, Enumeration<?> names)
Removes a set of attributes for the element.- Parameters:
old
- the old attribute setnames
- the attribute names- Returns:
- the updated attribute set
- See Also:
MutableAttributeSet.removeAttributes(java.util.Enumeration<?>)
-
removeAttributes
AttributeSet removeAttributes(AttributeSet old, AttributeSet attrs)
Removes a set of attributes for the element.- Parameters:
old
- the old attribute setattrs
- the attributes- Returns:
- the updated attribute set
- See Also:
MutableAttributeSet.removeAttributes(java.util.Enumeration<?>)
-
getEmptySet
AttributeSet getEmptySet()
Fetches an empty AttributeSet.- Returns:
- the attribute set
-
reclaim
void reclaim(AttributeSet a)
Reclaims an attribute set. This is a way for a MutableAttributeSet to mark that it no longer need a particular immutable set. This is only necessary in 1.1 where there are no weak references. A 1.1 implementation would call this in its finalize method.- Parameters:
a
- the attribute set to reclaim
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
05/11/2024 16:19:48 Cette version de la page est en cache (à la date du 05/11/2024 16:19:48) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 07/12/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/swing/text/AbstractDocument.AttributeContext.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.