本文整理汇总了Java中javax.swing.text.EditorKit.getContentType方法的典型用法代码示例。如果您正苦于以下问题:Java EditorKit.getContentType方法的具体用法?Java EditorKit.getContentType怎么用?Java EditorKit.getContentType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.swing.text.EditorKit
的用法示例。
在下文中一共展示了EditorKit.getContentType方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getMimeType
import javax.swing.text.EditorKit; //导入方法依赖的package包/类
/**
* Gets the mime type of a document in <code>JTextComponent</code>. If
* the mime type can't be determined this method will return <code>null</code>.
* It tries to determine the document's mime type first and if that does not
* work it uses mime type from the <code>EditorKit</code> attached to the
* component.
*
* @param component The component to get the mime type for.
*
* @return The mime type of a document opened in the component or <code>null</code>.
*/
/* package */ static String getMimeType(JTextComponent component) {
Document doc = component.getDocument();
String mimeType = getMimeType(doc);
if (mimeType == null) {
EditorKit kit = component.getUI().getEditorKit(component);
if (kit != null) {
mimeType = kit.getContentType();
}
}
return mimeType;
}
示例2: getMimeType
import javax.swing.text.EditorKit; //导入方法依赖的package包/类
static String getMimeType(JTextComponent component) {
Document doc = component.getDocument();
String mimeType = (String) doc.getProperty("mimeType"); //NOI18N
if (mimeType == null) {
EditorKit kit = component.getUI().getEditorKit(component);
if (kit != null) {
mimeType = kit.getContentType();
}
}
return mimeType;
}
示例3: getMimeType
import javax.swing.text.EditorKit; //导入方法依赖的package包/类
private static String getMimeType(JTextComponent component) {
Document doc = component.getDocument();
String mimeType = (String) doc.getProperty("mimeType"); //NOI18N
if (mimeType == null) {
EditorKit kit = component.getUI().getEditorKit(component);
if (kit != null) {
mimeType = kit.getContentType();
}
}
return mimeType;
}
示例4: getMimeType
import javax.swing.text.EditorKit; //导入方法依赖的package包/类
private String getMimeType() {
EditorKit ek = component.getUI().getEditorKit(component);
String mimeType;
if (ek != null) {
mimeType = ek.getContentType();
} else if (component.getDocument() != null) {
mimeType = DocumentUtilities.getMimeType(component.getDocument());
} else {
mimeType = "";
}
return mimeType;
}
示例5: getMimeType
import javax.swing.text.EditorKit; //导入方法依赖的package包/类
/**
* Gets the mime type of a document in <code>JTextComponent</code>. If
* the mime type can't be determined this method will return <code>null</code>.
* It tries to determine the document's mime type first and if that does not
* work it uses mime type from the <code>EditorKit</code> attached to the
* component.
*
* @param component The component to get the mime type for.
*
* @return The mime type of a document opened in the component or <code>null</code>.
* @since 1.23
*/
public static String getMimeType(JTextComponent component) {
Document doc = component.getDocument();
String mimeType = getMimeType(doc);
if (mimeType == null) {
EditorKit kit = component.getUI().getEditorKit(component);
if (kit != null) {
mimeType = kit.getContentType();
}
}
return mimeType;
}