- 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.
-
-
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/html/parser/contentmodel.html/.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.