org.eclipse.core.runtime.content |
|
Java Source File Name | Type | Comment |
BinarySignatureDescriber.java | Class | A content describer for binary formats that present some
simple signature at a known, fixed offset.
This executable extension supports three parameters:
"signature", "offset" and "required", the first one being mandatory. |
IContentDescriber.java | Interface | Content describers know how to retrieve metadata from
contents.
Note: It is expected that content describer implementations be declared in a package
that is exempt from plug-in activation (using the Eclipse-AutoStart bundle
manifest header). |
IContentDescription.java | Interface | A content description object contains information about the nature of
arbitrary data.
A content description object will always include the content type for the
examined contents, and may also include information on:
- charset;
- byte order mark;
- other custom properties provided by third-party plug-ins.
Content describers provided by plug-ins will fill in most of the
properties in a content description object, except for the content type,
what is done by the platform. |
IContentType.java | Interface | Content types represent and provide information on file types, such as
associated file names/extensions, default charset, etc. |
IContentTypeManager.java | Interface | The content type manager provides facilities for file name and content-based
type lookup and content description. |
IContentTypeMatcher.java | Interface | An object that performs content type matching queries. |
ITextContentDescriber.java | Interface | Text content describers extend basic content describers to provide
the ability of scanning character streams (readers). |
XMLRootElementContentDescriber.java | Class | A content describer for detecting the name of the top-level element or the
DTD system identifier in an XML file.
This executable extension supports two parameters:
"dtd" and "element". |