org.apache.batik.util.gui.xmleditor
Class XMLDocument
java.lang.Object
javax.swing.text.AbstractDocument
javax.swing.text.PlainDocument
org.apache.batik.util.gui.xmleditor.XMLDocument
- All Implemented Interfaces:
- Serializable, Document
public class XMLDocument
- extends PlainDocument
A document that can be marked up using XML style.
- See Also:
- Serialized Form
Methods inherited from class javax.swing.text.AbstractDocument |
addDocumentListener, addUndoableEditListener, createBranchElement, createLeafElement, createPosition, dump, fireChangedUpdate, fireInsertUpdate, fireRemoveUpdate, fireUndoableEditUpdate, getAsynchronousLoadPriority, getAttributeContext, getBidiRootElement, getContent, getCurrentWriter, getDocumentFilter, getDocumentListeners, getDocumentProperties, getEndPosition, getLength, getListeners, getProperty, getRootElements, getStartPosition, getText, getText, getUndoableEditListeners, postRemoveUpdate, putProperty, readLock, readUnlock, removeDocumentListener, removeUndoableEditListener, render, replace, setAsynchronousLoadPriority, setDocumentFilter, setDocumentProperties, writeLock, writeUnlock |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
lexer
protected XMLScanner lexer
context
protected XMLContext context
cacheToken
protected XMLToken cacheToken
XMLDocument
public XMLDocument()
XMLDocument
public XMLDocument(XMLContext context)
- Creates a new instance of XMLDocument
- Parameters:
context
- XMLContext
getScannerStart
public XMLToken getScannerStart(int pos)
throws BadLocationException
- Return XMLToken
- Parameters:
pos
- position
- Returns:
- XMLToken
- Throws:
BadLocationException
insertString
public void insertString(int offset,
String str,
AttributeSet a)
throws BadLocationException
-
- Specified by:
insertString
in interface Document
- Overrides:
insertString
in class PlainDocument
- Throws:
BadLocationException
remove
public void remove(int offs,
int len)
throws BadLocationException
-
- Specified by:
remove
in interface Document
- Overrides:
remove
in class AbstractDocument
- Throws:
BadLocationException
find
public int find(String str,
int fromIndex,
boolean caseSensitive)
throws BadLocationException
- Find the first occurrence of the specified String starting at the specified index.
- Parameters:
str
- String to findfromIndex
- caseSensitive
- true or false
- Returns:
- the offset if the string argument occurs as a substring, otherwise return -1
- Throws:
BadLocationException
- if fromIndex was not a valid part of the document
Copyright © 2008 Apache Software Foundation. All Rights Reserved.