當前位置: 首頁>>代碼示例>>Java>>正文


Java EditorKit.getContentType方法代碼示例

本文整理匯總了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;
}
 
開發者ID:apache,項目名稱:incubator-netbeans,代碼行數:23,代碼來源:Utilities.java

示例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;
}
 
開發者ID:apache,項目名稱:incubator-netbeans,代碼行數:12,代碼來源:BlockHighlighting.java

示例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;
}
 
開發者ID:apache,項目名稱:incubator-netbeans,代碼行數:12,代碼來源:BracesMatchHighlighting.java

示例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;
}
 
開發者ID:apache,項目名稱:incubator-netbeans,代碼行數:14,代碼來源:FoldHierarchyExecution.java

示例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;
}
 
開發者ID:apache,項目名稱:incubator-netbeans,代碼行數:24,代碼來源:DocumentUtilities.java


注:本文中的javax.swing.text.EditorKit.getContentType方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。