Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.compare/compare/org/eclipse/compare/IEditableContent.java')
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/IEditableContent.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/IEditableContent.java b/bundles/org.eclipse.compare/compare/org/eclipse/compare/IEditableContent.java
index 24adf799c..4b38d76a5 100644
--- a/bundles/org.eclipse.compare/compare/org/eclipse/compare/IEditableContent.java
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/IEditableContent.java
@@ -24,26 +24,26 @@ package org.eclipse.compare;
* @see IStreamContentAccessor
*/
public interface IEditableContent {
-
+
/**
* Returns <code>true</code> if this object can be modified.
* If it returns <code>false</code> the other methods of this API must not be called.
- *
+ *
* @return <code>true</code> if this object can be modified
*/
boolean isEditable();
-
+
/**
* Replaces the current content with the given new bytes.
- *
+ *
* @param newContent this new contents replaces the old contents
*/
- void setContent(byte[] newContent);
+ void setContent(byte[] newContent);
/**
* This method is called on a parent to add or remove a child,
* or to copy the contents of a child.
- *
+ *
* What to do is encoded in the two arguments as follows:
* <TABLE>
* <TR>

Back to the top