Uses of Class
org.fife.ui.rsyntaxtextarea.FileLocation
-
Packages that use FileLocation Package Description org.fife.ui.rsyntaxtextarea A syntax-highlighting text editor. -
-
Uses of FileLocation in org.fife.ui.rsyntaxtextarea
Subclasses of FileLocation in org.fife.ui.rsyntaxtextarea Modifier and Type Class Description (package private) classFileFileLocationThe location of a local file.(package private) classURLFileLocationThe location of a file at a (remote) URL.Fields in org.fife.ui.rsyntaxtextarea declared as FileLocation Modifier and Type Field Description private FileLocationTextEditorPane. locThe location of the file being edited.Methods in org.fife.ui.rsyntaxtextarea that return FileLocation Modifier and Type Method Description static FileLocationFileLocation. create(java.io.File file)Creates aFileLocationinstance for the specified local file.static FileLocationFileLocation. create(java.lang.String fileFullPath)Creates aFileLocationinstance for the specified local file.static FileLocationFileLocation. create(java.net.URL url)Creates aFileLocationinstance for the specified file.Methods in org.fife.ui.rsyntaxtextarea with parameters of type FileLocation Modifier and Type Method Description private voidTextEditorPane. init(FileLocation loc, java.lang.String defaultEnc)Initializes this editor with the specified file location.voidTextEditorPane. load(FileLocation loc)Loads the specified file in this editor.voidTextEditorPane. load(FileLocation loc, java.lang.String defaultEnc)Loads the specified file in this editor.voidTextEditorPane. load(FileLocation loc, java.nio.charset.Charset defaultEnc)Loads the specified file in this editor.voidTextEditorPane. saveAs(FileLocation loc)Saves this file in a new local location.private voidTextEditorPane. saveImpl(FileLocation loc)Saves the text in this editor to the specified location.Constructors in org.fife.ui.rsyntaxtextarea with parameters of type FileLocation Constructor Description TextEditorPane(int textMode, boolean wordWrapEnabled, FileLocation loc)Creates a newTextEditorPane.TextEditorPane(int textMode, boolean wordWrapEnabled, FileLocation loc, java.lang.String defaultEnc)Creates a newTextEditorPane.
-