- java.lang.Object
-
- javax.swing.text.html.parser.ContentModel
-
- All Implemented Interfaces:
- Serializable
public final class ContentModel extends Object implements Serializable
A representation of a content model. A content model is basically a restricted BNF expression. It is restricted in the sense that it must be deterministic. This means that you don't have to represent it as a finite state automata.See Annex H on page 556 of the SGML handbook for more information.
-
-
Field Summary
Fields Modifier and Type Field and Description Object
content
The content.ContentModel
next
The next content model (in a ',', '|' or '&' expression).int
type
Type.
-
Constructor Summary
Constructors Constructor and Description ContentModel()
ContentModel(Element content)
Create a content model for an element.ContentModel(int type, ContentModel content)
Create a content model of a particular type.ContentModel(int type, Object content, ContentModel next)
Create a content model of a particular type.
-
Method Summary
Methods Modifier and Type Method and Description boolean
empty()
Return true if the content model could match an empty input stream.Element
first()
Return the element that must be next.boolean
first(Object token)
Return true if the token could potentially be the first token in the input stream.void
getElements(Vector<Element> elemVec)
Update elemVec with the list of elements that are part of the this contentModel.String
toString()
Convert to a string.
-
-
-
Field Detail
-
type
public int type
Type. Either '*', '?', '+', ',', '|', '&'.
-
content
public Object content
The content. Either an Element or a ContentModel.
-
next
public ContentModel next
The next content model (in a ',', '|' or '&' expression).
-
-
Constructor Detail
-
ContentModel
public ContentModel()
-
ContentModel
public ContentModel(Element content)
Create a content model for an element.
-
ContentModel
public ContentModel(int type, ContentModel content)
Create a content model of a particular type.
-
ContentModel
public ContentModel(int type, Object content, ContentModel next)
Create a content model of a particular type.
-
-
Method Detail
-
empty
public boolean empty()
Return true if the content model could match an empty input stream.
-
getElements
public void getElements(Vector<Element> elemVec)
Update elemVec with the list of elements that are part of the this contentModel.
-
first
public boolean first(Object token)
Return true if the token could potentially be the first token in the input stream.
-
first
public Element first()
Return the element that must be next.
-
-
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
01/11/2024 00:48:34 Cette version de la page est en cache (à la date du 01/11/2024 00:48:34) 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 11/06/2005, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/swing/text/html/parser/contentmodel.html/.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.