Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.core/src/org/eclipse/team/core/IFileTypeRegistry.java')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/IFileTypeRegistry.java63
1 files changed, 0 insertions, 63 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/IFileTypeRegistry.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/IFileTypeRegistry.java
deleted file mode 100644
index f10cc868d..000000000
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/IFileTypeRegistry.java
+++ /dev/null
@@ -1,63 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2002 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v0.5
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v05.html
- *
- * Contributors:
- * IBM - Initial API and implementation
- ******************************************************************************/
-package org.eclipse.team.core;
-
-/**
- * Provides a generic registry for keys and values based on file extensions.
- *
- * File extensions should be considered without the usual "*." prefix.
- *
- * @since 2.0
- */
-public interface IFileTypeRegistry {
- public static final int UNKNOWN = 0;
- public static final int TEXT = 1;
- public static final int BINARY = 2;
- /**
- * Return the type of files with the given file extension.
- *
- * Valid return values are:
- * IFileTypeRegistry.TEXT
- * IFileTypeRegistry.BINARY
- * IFileTypeRegistry.UNKNOWN
- *
- * @param extension the extension
- * @return whether files with the given extension are TEXT, BINARY, or UNKNOWN
- */
- public int getType(String extension);
- /**
- * Return all extensions in the registry.
- *
- * @return the extensions in the registry
- */
- public String[] getExtensions();
-
- /**
- * Set the file type for the give extension to the given type.
- *
- * Valid types are:
- * IFileTypeRegistry.TEXT
- * IFileTypeRegistry.BINARY
- * IFileTypeRegistry.UNKNOWN
- *
- * @param extension the file extension
- * @param type the file type
- */
- public void setValue(String extension, int type);
-
- /**
- * Return whether the registry contains a value for the specified
- * extension.
- *
- * @param extension the file extension
- */
- public boolean containsExtension(String extension);
-}

Back to the top