Interface AuthorWorkspaceAccess
-
- All Superinterfaces:
ApplicationInformationAccess
,ColorThemeUtilities
,Workspace
,WorkspaceUtilities
@API(type=NOT_EXTENDABLE, src=PUBLIC) public interface AuthorWorkspaceAccess extends Workspace
Provides access to workspace specific information and actions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.net.URL[]
getAllEditorLocations()
Get all the editor locations.WSEditor
getEditorAccess(java.net.URL location)
Find an editor access by location.boolean
open(java.io.File file)
Deprecated.UseWorkspace.open(URL)
instead.-
Methods inherited from interface ro.sync.exml.workspace.api.application.ApplicationInformationAccess
getApplicationName, getApplicationType, getLicenseInformationProvider, getPlatform, getPreferencesDirectory, getUserInterfaceLanguage, getVersion, getVersionBuildID
-
Methods inherited from interface ro.sync.exml.workspace.api.util.ColorThemeUtilities
getColorTheme, getImageInverter
-
Methods inherited from interface ro.sync.exml.workspace.api.Workspace
close, closeAll, createNewEditor, createNewEditor, delete, isStandalone, open, open, open, refreshInProject, saveAll, setParentFrameTitle
-
Methods inherited from interface ro.sync.exml.workspace.api.WorkspaceUtilities
chooseDirectory, chooseDirectory, chooseFile, chooseFile, chooseFile, chooseFiles, chooseURL, chooseURL, chooseURL, chooseURLPath, chooseURLPath, clearImageCache, createJavaProcess, createProcess, getDataSourceAccess, getImageUtilities, getParentFrame, getTemplateManager, openInExternalApplication, openInExternalApplication, openInExternalApplication, showConfirmDialog, showConfirmDialog, showErrorMessage, showErrorMessage, showInformationMessage, showStatusMessage, showStatusMessage, showWarningDialog, showWarningDialog, showWarningMessage, startProcess
-
-
-
-
Method Detail
-
open
@Deprecated boolean open(java.io.File file)
Deprecated.UseWorkspace.open(URL)
instead.Opens the specifiedFile
in a new editor.- Parameters:
file
- The file to be opened.- Returns:
true
if the operation has succeeded.
-
getAllEditorLocations
java.net.URL[] getAllEditorLocations()
Get all the editor locations.- Returns:
- All the editor locations in the main editing area or empty array if no editor is opened.
- Since:
- 13.2
-
getEditorAccess
WSEditor getEditorAccess(java.net.URL location)
Find an editor access by location.- Parameters:
location
- The editor location- Returns:
- access to the found editor or
null
if no editor found with that location URL. - Since:
- 13.2
-
-