Package Summary  Overview Summary

class:DefaultEditorKit [CHANGED]

  • All Implemented Interfaces:
    Serializable, Cloneable
    Direct Known Subclasses:
    StyledEditorKit


    public class DefaultEditorKit
    extends EditorKit
    
    This is the set of things needed by a text component to be a reasonably functioning editor for some type of text document. This implementation provides a default implementation which treats text as plain text and provides a minimal set of actions for a simple editor.
    Newlines
    There are two properties which deal with newlines. The system property, line.separator, is defined to be platform-dependent, either "\n", "\r", or "\r\n". There is also a property defined in DefaultEditorKit, called EndOfLineStringProperty, which is defined automatically when a document is loaded, to be the first occurrence of any of the newline characters. When a document is loaded, EndOfLineStringProperty is set appropriately, and when the document is written back out, the EndOfLineStringProperty is used. But while the document is in memory, the "\n" character is used to define a newline, regardless of how the newline is defined when the document is on disk. Therefore, for searching purposes, "\n" should always be used. When a new document is created, and the EndOfLineStringProperty has not been defined, it will use the System property when writing out the document.

    Note that EndOfLineStringProperty is set on the Document using the get/putProperty methods. Subclasses may override this behavior.

    See Also:
    Serialized Form
  • All Implemented Interfaces:
    Serializable, Cloneable
    Direct Known Subclasses:
    StyledEditorKit


    public class DefaultEditorKit
    extends EditorKit
    
    This is the set of things needed by a text component to be a reasonably functioning editor for some type of text document. This implementation provides a default implementation which treats text as plain text and provides a minimal set of actions for a simple editor.
    Newlines
    There are two properties which deal with newlines. The system property, line.separator, is defined to be platform-dependent, either "\n", "\r", or "\r\n". There is also a property defined in DefaultEditorKit, called EndOfLineStringProperty, which is defined automatically when a document is loaded, to be the first occurrence of any of the newline characters. When a document is loaded, EndOfLineStringProperty is set appropriately, and when the document is written back out, the EndOfLineStringProperty is used. But while the document is in memory, the "\n" character is used to define a newline, regardless of how the newline is defined when the document is on disk. Therefore, for searching purposes, "\n" should always be used. When a new document is created, and the EndOfLineStringProperty has not been defined, it will use the System property when writing out the document.

    Note that EndOfLineStringProperty is set on the Document using the get/putProperty methods. Subclasses may override this behavior.

  • All Implemented Interfaces:
    Serializable, Cloneable
    Direct Known Subclasses:
    StyledEditorKit


    public class DefaultEditorKit
    extends EditorKit
    
    This is the set of things needed by a text component to be a reasonably functioning editor for some type of text document. This implementation provides a default implementation which treats text as plain text and provides a minimal set of actions for a simple editor.
    Newlines
    There are two properties which deal with newlines. The system property, line.separator, is defined to be platform-dependent, either "\n", "\r", or "\r\n". There is also a property defined in DefaultEditorKit, called EndOfLineStringProperty, which is defined automatically when a document is loaded, to be the first occurrence of any of the newline characters. When a document is loaded, EndOfLineStringProperty is set appropriately, and when the document is written back out, the EndOfLineStringProperty is used. But while the document is in memory, the "\n" character is used to define a newline, regardless of how the newline is defined when the document is on disk. Therefore, for searching purposes, "\n" should always be used. When a new document is created, and the EndOfLineStringProperty has not been defined, it will use the System property when writing out the document.

    Note that EndOfLineStringProperty is set on the Document using the get/putProperty methods. Subclasses may override this behavior.

    See Also:
    Serialized Form

field:EndOfLineStringProperty [NONE]

  • EndOfLineStringProperty

    public static final String EndOfLineStringProperty
    When reading a document if a CRLF is encountered a property with this name is added and the value will be "\r\n".
    See Also:
    Constant Field Values

field:insertContentAction [NONE]

  • insertContentAction

    public static final String insertContentAction
    Name of the action to place content into the associated document. If there is a selection, it is removed before the new content is added.
    See Also:
    getActions(), Constant Field Values

field:insertBreakAction [NONE]

  • insertBreakAction

    public static final String insertBreakAction
    Name of the action to place a line/paragraph break into the document. If there is a selection, it is removed before the break is added.
    See Also:
    getActions(), Constant Field Values

field:insertTabAction [NONE]

  • insertTabAction

    public static final String insertTabAction
    Name of the action to place a tab character into the document. If there is a selection, it is removed before the tab is added.
    See Also:
    getActions(), Constant Field Values

field:deletePrevCharAction [NONE]

  • deletePrevCharAction

    public static final String deletePrevCharAction
    Name of the action to delete the character of content that precedes the current caret position.
    See Also:
    getActions(), Constant Field Values

field:deleteNextCharAction [NONE]

  • deleteNextCharAction

    public static final String deleteNextCharAction
    Name of the action to delete the character of content that follows the current caret position.
    See Also:
    getActions(), Constant Field Values

field:deleteNextWordAction [NONE]

field:deletePrevWordAction [NONE]

field:readOnlyAction [NONE]

field:writableAction [NONE]

field:cutAction [NONE]

field:copyAction [NONE]

field:pasteAction [NONE]

field:beepAction [NONE]

field:pageUpAction [NONE]

field:pageDownAction [NONE]

field:forwardAction [NONE]

field:backwardAction [NONE]

field:selectionForwardAction [NONE]

  • selectionForwardAction

    public static final String selectionForwardAction
    Name of the Action for extending the selection by moving the caret logically forward one position.
    See Also:
    getActions(), Constant Field Values

field:selectionBackwardAction [NONE]

  • selectionBackwardAction

    public static final String selectionBackwardAction
    Name of the Action for extending the selection by moving the caret logically backward one position.
    See Also:
    getActions(), Constant Field Values

field:upAction [NONE]

field:downAction [NONE]

field:selectionUpAction [NONE]

  • selectionUpAction

    public static final String selectionUpAction
    Name of the Action for moving the caret logically upward one position, extending the selection.
    See Also:
    getActions(), Constant Field Values

field:selectionDownAction [NONE]

  • selectionDownAction

    public static final String selectionDownAction
    Name of the Action for moving the caret logically downward one position, extending the selection.
    See Also:
    getActions(), Constant Field Values

field:beginWordAction [NONE]

field:endWordAction [NONE]

field:selectionBeginWordAction [NONE]

  • selectionBeginWordAction

    public static final String selectionBeginWordAction
    Name of the Action for moving the caret to the beginning of a word, extending the selection.
    See Also:
    getActions(), Constant Field Values

field:selectionEndWordAction [NONE]

  • selectionEndWordAction

    public static final String selectionEndWordAction
    Name of the Action for moving the caret to the end of a word, extending the selection.
    See Also:
    getActions(), Constant Field Values

field:previousWordAction [NONE]

field:nextWordAction [NONE]

field:selectionPreviousWordAction [NONE]

  • selectionPreviousWordAction

    public static final String selectionPreviousWordAction
    Name of the Action for moving the selection to the beginning of the previous word, extending the selection.
    See Also:
    getActions(), Constant Field Values

field:selectionNextWordAction [NONE]

  • selectionNextWordAction

    public static final String selectionNextWordAction
    Name of the Action for moving the selection to the beginning of the next word, extending the selection.
    See Also:
    getActions(), Constant Field Values

field:beginLineAction [NONE]

field:endLineAction [NONE]

field:selectionBeginLineAction [NONE]

  • selectionBeginLineAction

    public static final String selectionBeginLineAction
    Name of the Action for moving the caret to the beginning of a line, extending the selection.
    See Also:
    getActions(), Constant Field Values

field:selectionEndLineAction [NONE]

  • selectionEndLineAction

    public static final String selectionEndLineAction
    Name of the Action for moving the caret to the end of a line, extending the selection.
    See Also:
    getActions(), Constant Field Values

field:beginParagraphAction [NONE]

field:endParagraphAction [NONE]

field:selectionBeginParagraphAction [NONE]

  • selectionBeginParagraphAction

    public static final String selectionBeginParagraphAction
    Name of the Action for moving the caret to the beginning of a paragraph, extending the selection.
    See Also:
    getActions(), Constant Field Values

field:selectionEndParagraphAction [NONE]

  • selectionEndParagraphAction

    public static final String selectionEndParagraphAction
    Name of the Action for moving the caret to the end of a paragraph, extending the selection.
    See Also:
    getActions(), Constant Field Values

field:beginAction [NONE]

field:endAction [NONE]

field:selectionBeginAction [NONE]

field:selectionEndAction [NONE]

field:selectWordAction [NONE]

field:selectLineAction [NONE]

field:selectParagraphAction [NONE]

field:selectAllAction [NONE]

field:defaultKeyTypedAction [NONE]

  • defaultKeyTypedAction

    public static final String defaultKeyTypedAction
    Name of the action that is executed by default if a key typed event is received and there is no keymap entry.
    See Also:
    getActions(), Constant Field Values

constructor:DefaultEditorKit() [CHANGED]

  • DefaultEditorKit

    public DefaultEditorKitpublic DefaultEditorKit​()
    default constructor for DefaultEditorKit
  • DefaultEditorKit

    public DefaultEditorKit()
    default constructor for DefaultEditorKit
  • DefaultEditorKit

    public DefaultEditorKit​()
    default constructor for DefaultEditorKit

method:getContentType() [CHANGED]

  • getContentType

    public String getContentType getContentType​()
    Gets the MIME type of the data that this kit represents support for. The default is text/plain.
    Specified by:
    getContentType in class EditorKit
    Returns:
    the type
  • getContentType

    public String getContentType()
    Gets the MIME type of the data that this kit represents support for. The default is text/plain.
    Specified by:
    getContentType in class EditorKit
    Returns:
    the type
  • getContentType

    public String getContentType​()
    Gets the MIME type of the data that this kit represents support for. The default is text/plain.
    Specified by:
    getContentType in class EditorKit
    Returns:
    the type

method:getViewFactory() [CHANGED]

  • getViewFactory

    public ViewFactory getViewFactory getViewFactory​()
    Fetches a factory that is suitable for producing views of any models that are produced by this kit. The default is to have the UI produce the factory, so this method has no implementation.
    Specified by:
    getViewFactory in class EditorKit
    Returns:
    the view factory
  • getViewFactory

    public ViewFactory getViewFactory()
    Fetches a factory that is suitable for producing views of any models that are produced by this kit. The default is to have the UI produce the factory, so this method has no implementation.
    Specified by:
    getViewFactory in class EditorKit
    Returns:
    the view factory
  • getViewFactory

    public ViewFactory getViewFactory​()
    Fetches a factory that is suitable for producing views of any models that are produced by this kit. The default is to have the UI produce the factory, so this method has no implementation.
    Specified by:
    getViewFactory in class EditorKit
    Returns:
    the view factory

method:getActions() [CHANGED]

  • getActions

    public Action[] getActions getActions​()
    Fetches the set of commands that can be used on a text component that is using a model and view produced by this kit.
    Specified by:
    getActions in class EditorKit
    Returns:
    the command list
  • getActions

    public Action[] getActions()
    Fetches the set of commands that can be used on a text component that is using a model and view produced by this kit.
    Specified by:
    getActions in class EditorKit
    Returns:
    the command list
  • getActions

    public Action[] getActions​()
    Fetches the set of commands that can be used on a text component that is using a model and view produced by this kit.
    Specified by:
    getActions in class EditorKit
    Returns:
    the command list

method:createCaret() [CHANGED]

  • createCaret

    public Caret createCaret createCaret​()
    Fetches a caret that can navigate through views produced by the associated ViewFactory.
    Specified by:
    createCaret in class EditorKit
    Returns:
    the caret
  • createCaret

    public Caret createCaret()
    Fetches a caret that can navigate through views produced by the associated ViewFactory.
    Specified by:
    createCaret in class EditorKit
    Returns:
    the caret
  • createCaret

    public Caret createCaret​()
    Fetches a caret that can navigate through views produced by the associated ViewFactory.
    Specified by:
    createCaret in class EditorKit
    Returns:
    the caret

method:createDefaultDocument() [CHANGED]

  • createDefaultDocument

    public Document createDefaultDocument createDefaultDocument​()
    Creates an uninitialized text storage model (PlainDocument) that is appropriate for this type of editor.
    Specified by:
    createDefaultDocument in class EditorKit
    Returns:
    the model
  • createDefaultDocument

    public Document createDefaultDocument()
    Creates an uninitialized text storage model (PlainDocument) that is appropriate for this type of editor.
    Specified by:
    createDefaultDocument in class EditorKit
    Returns:
    the model
  • createDefaultDocument

    public Document createDefaultDocument​()
    Creates an uninitialized text storage model (PlainDocument) that is appropriate for this type of editor.
    Specified by:
    createDefaultDocument in class EditorKit
    Returns:
    the model

method:read(java.io.InputStream, javax.swing.text.Document, int) [CHANGED]

  • read

    public void readpublic void read​(InputStream in,
                     Document doc,
                     int pos)
              throws IOException,
                     BadLocationException
    
    Inserts content from the given stream which is expected to be in a format appropriate for this kind of content handler.
    Specified by:
    read in class EditorKit
    Parameters:
    in - The stream to read from
    doc - The destination for the insertion.
    pos - The location in the document to place the content >=0.
    Throws:
    IOException - on any I/O error
    BadLocationException - if pos represents an invalid location within the document.
  • read

    public void read(InputStream in,
                     Document doc,
                     int pos)
              throws IOException,
                     BadLocationException
    
    Inserts content from the given stream which is expected to be in a format appropriate for this kind of content handler.
    Specified by:
    read in class EditorKit
    Parameters:
    in - The stream to read from
    doc - The destination for the insertion.
    pos - The location in the document to place the content >=0.
    Throws:
    IOException - on any I/O error
    BadLocationException - if pos represents an invalid location within the document.
  • read

    public void read​(InputStream in,
                     Document doc,
                     int pos)
              throws IOException,
                     BadLocationException
    
    Inserts content from the given stream which is expected to be in a format appropriate for this kind of content handler.
    Specified by:
    read in class EditorKit
    Parameters:
    in - The stream to read from
    doc - The destination for the insertion.
    pos - The location in the document to place the content >=0.
    Throws:
    IOException - on any I/O error
    BadLocationException - if pos represents an invalid location within the document.

method:write(java.io.OutputStream, javax.swing.text.Document, int, int) [CHANGED]

  • write

    public void writepublic void write​(OutputStream out,
                      Document doc,
                      int pos,
                      int len)
               throws IOException,
                      BadLocationException
    
    Writes content from a document to the given stream in a format appropriate for this kind of content handler.
    Specified by:
    write in class EditorKit
    Parameters:
    out - The stream to write to
    doc - The source for the write.
    pos - The location in the document to fetch the content >=0.
    len - The amount to write out >=0.
    Throws:
    IOException - on any I/O error
    BadLocationException - if pos represents an invalid location within the document.
  • write

    public void write(OutputStream out,
                      Document doc,
                      int pos,
                      int len)
               throws IOException,
                      BadLocationException
    
    Writes content from a document to the given stream in a format appropriate for this kind of content handler.
    Specified by:
    write in class EditorKit
    Parameters:
    out - The stream to write to
    doc - The source for the write.
    pos - The location in the document to fetch the content >=0.
    len - The amount to write out >=0.
    Throws:
    IOException - on any I/O error
    BadLocationException - if pos represents an invalid location within the document.
  • write

    public void write​(OutputStream out,
                      Document doc,
                      int pos,
                      int len)
               throws IOException,
                      BadLocationException
    
    Writes content from a document to the given stream in a format appropriate for this kind of content handler.
    Specified by:
    write in class EditorKit
    Parameters:
    out - The stream to write to
    doc - The source for the write.
    pos - The location in the document to fetch the content >=0.
    len - The amount to write out >=0.
    Throws:
    IOException - on any I/O error
    BadLocationException - if pos represents an invalid location within the document.

method:read(java.io.Reader, javax.swing.text.Document, int) [CHANGED]

  • read

    public void readpublic void read​(Reader in,
                     Document doc,
                     int pos)
              throws IOException,
                     BadLocationException
    
    Inserts content from the given stream, which will be treated as plain text.
    Specified by:
    read in class EditorKit
    Parameters:
    in - The stream to read from
    doc - The destination for the insertion.
    pos - The location in the document to place the content >=0.
    Throws:
    IOException - on any I/O error
    BadLocationException - if pos represents an invalid location within the document.
  • read

    public void read(Reader in,
                     Document doc,
                     int pos)
              throws IOException,
                     BadLocationException
    
    Inserts content from the given stream, which will be treated as plain text.
    Specified by:
    read in class EditorKit
    Parameters:
    in - The stream to read from
    doc - The destination for the insertion.
    pos - The location in the document to place the content >=0.
    Throws:
    IOException - on any I/O error
    BadLocationException - if pos represents an invalid location within the document.
  • read

    public void read​(Reader in,
                     Document doc,
                     int pos)
              throws IOException,
                     BadLocationException
    
    Inserts content from the given stream, which will be treated as plain text.
    Specified by:
    read in class EditorKit
    Parameters:
    in - The stream to read from
    doc - The destination for the insertion.
    pos - The location in the document to place the content >=0.
    Throws:
    IOException - on any I/O error
    BadLocationException - if pos represents an invalid location within the document.

method:write(java.io.Writer, javax.swing.text.Document, int, int) [CHANGED]

  • write

    public void writepublic void write​(Writer out,
                      Document doc,
                      int pos,
                      int len)
               throws IOException,
                      BadLocationException
    
    Writes content from a document to the given stream as plain text.
    Specified by:
    write in class EditorKit
    Parameters:
    out - The stream to write to
    doc - The source for the write.
    pos - The location in the document to fetch the content from >=0.
    len - The amount to write out >=0.
    Throws:
    IOException - on any I/O error
    BadLocationException - if pos is not within 0 and the length of the document.
  • write

    public void write(Writer out,
                      Document doc,
                      int pos,
                      int len)
               throws IOException,
                      BadLocationException
    
    Writes content from a document to the given stream as plain text.
    Specified by:
    write in class EditorKit
    Parameters:
    out - The stream to write to
    doc - The source for the write.
    pos - The location in the document to fetch the content from >=0.
    len - The amount to write out >=0.
    Throws:
    IOException - on any I/O error
    BadLocationException - if pos is not within 0 and the length of the document.
  • write

    public void write​(Writer out,
                      Document doc,
                      int pos,
                      int len)
               throws IOException,
                      BadLocationException
    
    Writes content from a document to the given stream as plain text.
    Specified by:
    write in class EditorKit
    Parameters:
    out - The stream to write to
    doc - The source for the write.
    pos - The location in the document to fetch the content from >=0.
    len - The amount to write out >=0.
    Throws:
    IOException - on any I/O error
    BadLocationException - if pos is not within 0 and the length of the document.

© 2017 Oracle Corporation and/or its affiliates