Interface COM.tolstoy.jconfig.ConfigEntry
All Packages Class Hierarchy This Package Previous Next Index
Interface COM.tolstoy.jconfig.ConfigEntry
- public interface ConfigEntry
- extends Object
Interface for objects which map between different representations of a file type. For instance,
this corresponds to one entry in the InternetConfig mapping table.
-
copyrightString
-
-
dumpInfo(PrintStream, String)
- Writes information about this object to the indicated PrintStream.
-
getAppName()
- Returns the name of the application associated with this mapping.
-
getEntryName()
- Returns the name of this mapping.
-
getFileExtension()
- Returns the FileExtension associated with this mapping.
-
getFinderInfo()
- Returns the FinderInfo associated with this mapping.
-
getFlags()
- Returns the direction flags: in, out, or both.
-
getMIMEType()
- Returns the MIME type associated with this mapping.
copyrightString
public final static String copyrightString
getFinderInfo
public abstract FinderInfo getFinderInfo()
- Returns the FinderInfo associated with this mapping.
getMIMEType
public abstract MIMEType getMIMEType()
- Returns the MIME type associated with this mapping.
getFileExtension
public abstract FileExtension getFileExtension()
- Returns the FileExtension associated with this mapping.
getAppName
public abstract String getAppName()
- Returns the name of the application associated with this mapping.
getEntryName
public abstract String getEntryName()
- Returns the name of this mapping.
getFlags
public abstract int getFlags()
- Returns the direction flags: in, out, or both.
dumpInfo
public abstract void dumpInfo(PrintStream ps,
String indent)
- Writes information about this object to the indicated PrintStream. Each line will
be preceded with the 'indent' argument.
All Packages Class Hierarchy This Package Previous Next Index