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) class
FileFileLocation
The location of a local file.(package private) class
URLFileLocation
The location of a file at a (remote) URL.Fields in org.fife.ui.rsyntaxtextarea declared as FileLocation Modifier and Type Field Description private FileLocation
TextEditorPane. loc
The location of the file being edited.Methods in org.fife.ui.rsyntaxtextarea that return FileLocation Modifier and Type Method Description static FileLocation
FileLocation. create(java.io.File file)
Creates aFileLocation
instance for the specified local file.static FileLocation
FileLocation. create(java.lang.String fileFullPath)
Creates aFileLocation
instance for the specified local file.static FileLocation
FileLocation. create(java.net.URL url)
Creates aFileLocation
instance for the specified file.Methods in org.fife.ui.rsyntaxtextarea with parameters of type FileLocation Modifier and Type Method Description private void
TextEditorPane. init(FileLocation loc, java.lang.String defaultEnc)
Initializes this editor with the specified file location.void
TextEditorPane. load(FileLocation loc)
Loads the specified file in this editor.void
TextEditorPane. load(FileLocation loc, java.lang.String defaultEnc)
Loads the specified file in this editor.void
TextEditorPane. load(FileLocation loc, java.nio.charset.Charset defaultEnc)
Loads the specified file in this editor.void
TextEditorPane. saveAs(FileLocation loc)
Saves this file in a new local location.private void
TextEditorPane. 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
.
-