FileModificationValidator
instead
of implementing this interface@Deprecated public interface IFileModificationValidator
This interface is used only in conjunction with the "org.eclipse.core.resources.fileModificationValidator" extension point. It is intended to be implemented only by the Eclipse Platform Team plug-in.
Modifier and Type | Method and Description |
---|---|
IStatus |
validateEdit(IFile[] files,
Object context)
Deprecated.
Validates that the given files can be modified.
|
IStatus |
validateSave(IFile file)
Deprecated.
Validates that the given file can be saved.
|
IStatus validateEdit(IFile[] files, Object context)
null
, the
validator must attempt to perform the validation in a headless manner.
The returned status is IStatus.OK
if this validator
believes the given file can be modified. Other return statuses indicate
the reason why the individual files cannot be modified.files
- the files that are to be modified; these files must all exist in the workspacecontext
- the org.eclipse.swt.widgets.Shell
that is to be used to
parent any dialogs with the user, or null
if there is no UI context (declared
as an Object
to avoid any direct references on the SWT component)IWorkspace.validateEdit(IFile[], Object)
IStatus validateSave(IFile file)
IFile#setContents
and IFile#appendContents
before any attempt to write data to disk. The returned status is
IStatus.OK
if this validator believes the given file can be
successfully saved. In all other cases the return value is a non-OK status.
Note that a return value of IStatus.OK
does not guarantee
that the save will succeed.file
- the file that is to be modified; this file must exist in the workspaceIStatus.OK
indicates a save should be attempted.IFile.setContents(java.io.InputStream, int, org.eclipse.core.runtime.IProgressMonitor)
,
IFile.appendContents(java.io.InputStream, int, org.eclipse.core.runtime.IProgressMonitor)
Copyright (c) 2000, 2015 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.