Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.core/src/org/eclipse/team/core/IStringMapping.java')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/IStringMapping.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/IStringMapping.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/IStringMapping.java
index bb4d2fdc0..197901ac6 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/IStringMapping.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/IStringMapping.java
@@ -15,26 +15,26 @@ package org.eclipse.team.core;
* A simple interface for mappings from a string (usually a file name or a file
* extension) and a content type (typically <code>Team.TEXT</code>,
* <code>Team.BINARY</code> or <code>Team.UNKNOWN</code>.
- *
+ *
* @since 3.1
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IStringMapping {
-
+
/**
* The string part of the mapping
- *
+ *
* @return the string
- *
+ *
* @since 3.1
*/
String getString();
-
+
/**
* The content type associated with the string
- *
+ *
* @return the content type
- *
+ *
* @since 3.1
*/
int getType();

Back to the top