diff options
author | Dani Megert | 2011-01-24 11:35:50 +0000 |
---|---|---|
committer | Dani Megert | 2011-01-24 11:35:50 +0000 |
commit | 32cdf1a10c665fefccb247ee6e0dbbdd3c69c6e3 (patch) | |
tree | cddace65f76ee8ae1688c386c29c8076d006f29b /org.eclipse.core.filebuffers | |
parent | 657adf13f84cd8dd399cd4d495ca3442fad97e1f (diff) | |
download | eclipse.platform.text-32cdf1a10c665fefccb247ee6e0dbbdd3c69c6e3.tar.gz eclipse.platform.text-32cdf1a10c665fefccb247ee6e0dbbdd3c69c6e3.tar.xz eclipse.platform.text-32cdf1a10c665fefccb247ee6e0dbbdd3c69c6e3.zip |
Replaced wrong usage of "it's" with "its".
Diffstat (limited to 'org.eclipse.core.filebuffers')
-rw-r--r-- | org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/IFileBuffer.java | 16 | ||||
-rw-r--r-- | org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/IFileBufferManager.java | 19 |
2 files changed, 20 insertions, 15 deletions
diff --git a/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/IFileBuffer.java b/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/IFileBuffer.java index eba8857a2..2f52ebc5b 100644 --- a/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/IFileBuffer.java +++ b/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/IFileBuffer.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2009 IBM Corporation and others. + * Copyright (c) 2000, 2011 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -166,13 +166,15 @@ public interface IFileBuffer { ISchedulingRule computeValidateStateRule(); /** - * Validates the state of this file buffer and tries to bring the buffer's - * underlying file into a state in which it can be modified. If state - * validation is not supported this operation does nothing. - * - * @param monitor the progress monitor, or <code>null</code> if progress reporting is not desired + * Validates the state of this file buffer and tries to bring the buffer's underlying file into + * a state in which it can be modified. If state validation is not supported this operation does + * nothing. + * + * @param monitor the progress monitor, or <code>null</code> if progress reporting is not + * desired * @param computationContext the context in which the validation is performed, e.g., a SWT shell - * @exception CoreException if the underlying file can not be accessed to it's state cannot be changed + * @exception CoreException if the underlying file can not be accessed or its state cannot be + * changed */ void validateState(IProgressMonitor monitor, Object computationContext) throws CoreException; diff --git a/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/IFileBufferManager.java b/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/IFileBufferManager.java index 3313532d9..3c9880083 100644 --- a/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/IFileBufferManager.java +++ b/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/IFileBufferManager.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2009 IBM Corporation and others. + * Copyright (c) 2000, 2011 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -300,17 +300,20 @@ public interface IFileBufferManager { void removeFileBufferListener(IFileBufferListener listener); /** - * Validates the state of the given file buffers and tries to bring the - * buffer's underlying file into a state in which it can be modified. File - * buffers which do not support state validation are left untouched. + * Validates the state of the given file buffers and tries to bring the buffer's underlying file + * into a state in which it can be modified. File buffers which do not support state validation + * are left untouched. * <p> - * In case of a single file buffer, {@link IFileBuffer#validateState(IProgressMonitor, Object)} should be used. + * In case of a single file buffer, {@link IFileBuffer#validateState(IProgressMonitor, Object)} + * should be used. * </p> - * + * * @param fileBuffers the file buffers to validate - * @param monitor the progress monitor, or <code>null</code> if progress reporting is not desired + * @param monitor the progress monitor, or <code>null</code> if progress reporting is not + * desired * @param computationContext the context in which the validation is performed, e.g., a SWT shell - * @exception CoreException if the underlying file can not be accessed to it's state cannot be changed + * @exception CoreException if the underlying file can not be accessed or its state cannot be + * changed * @since 3.1 */ void validateState(IFileBuffer[] fileBuffers, IProgressMonitor monitor, Object computationContext) throws CoreException; |