本文整理匯總了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;
}