1 11 package org.eclipse.core.runtime.content; 12 13 import java.io.IOException ; 14 import java.io.InputStream ; 15 import org.eclipse.core.runtime.QualifiedName; 16 17 40 public interface IContentDescriber { 41 48 public final static int INDETERMINATE = 1; 49 55 public final static int INVALID = 0; 56 62 public final static int VALID = 2; 63 64 89 public int describe(InputStream contents, IContentDescription description) throws IOException ; 90 91 97 public QualifiedName[] getSupportedOptions(); 98 } 99 | Popular Tags |