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


Java DocumentFilter.remove方法代碼示例

本文整理匯總了Java中javax.swing.text.DocumentFilter.remove方法的典型用法代碼示例。如果您正苦於以下問題:Java DocumentFilter.remove方法的具體用法?Java DocumentFilter.remove怎麽用?Java DocumentFilter.remove使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在javax.swing.text.DocumentFilter的用法示例。


在下文中一共展示了DocumentFilter.remove方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: remove

import javax.swing.text.DocumentFilter; //導入方法依賴的package包/類
/** Removes portion of a document */
    public @Override void remove(int offset, int length) throws BadLocationException {
//        if (LOG_EDT.isLoggable(Level.FINE)) { // Only permit operations in EDT
//            if (!SwingUtilities.isEventDispatchThread()) {
//                throw new IllegalStateException("BaseDocument.insertString not in EDT: offset=" + // NOI18N
//                        offset + ", len=" + length); // NOI18N
//            }
//        }

        // Always acquire atomic lock (it simplifies processing and improves readability)
        atomicLockImpl();
        try {
            checkModifiable(offset);
            DocumentFilter filter = getDocumentFilter();
            if (filter != null) {
                filter.remove(getFilterBypass(), offset, length);
            } else {
                handleRemove(offset, length);
            }
        } finally {
            atomicUnlockImpl(true);
        }
    }
 
開發者ID:apache,項目名稱:incubator-netbeans,代碼行數:24,代碼來源:BaseDocument.java

示例2: remove

import javax.swing.text.DocumentFilter; //導入方法依賴的package包/類
/**
 * Removes a piece of content from this <code>Document</code>.
 *
 * <p>If a {@link DocumentFilter} is installed in this document, the
 * corresponding method of the filter object is called. The
 * <code>DocumentFilter</code> is called even if <code>length</code>
 * is zero. This is different from {@link #replace}.</p>
 *
 * <p>Note: When <code>length</code> is zero or below the call is not
 * forwarded to the underlying {@link AbstractDocument.Content} instance
 * of this document and no exception is thrown.</p>
 *
 * @param offset the start offset of the fragment to be removed
 * @param length the length of the fragment to be removed
 *
 * @throws BadLocationException if <code>offset</code> or
 *         <code>offset + length</code> or invalid locations within this
 *         document
 */
public void remove(int offset, int length) throws BadLocationException
{
  writeLock();
  try
    {
      DocumentFilter f = getDocumentFilter();
      if (f == null)
        removeImpl(offset, length);
      else
        f.remove(getBypass(), offset, length);
    }
  finally
    {
      writeUnlock();
    }
}
 
開發者ID:vilie,項目名稱:javify,代碼行數:36,代碼來源:AbstractDocument.java

示例3: remove

import javax.swing.text.DocumentFilter; //導入方法依賴的package包/類
/**
 * Removes a piece of content from this <code>Document</code>.
 * 
 * <p>If a {@link DocumentFilter} is installed in this document, the
 * corresponding method of the filter object is called. The
 * <code>DocumentFilter</code> is called even if <code>length</code>
 * is zero. This is different from {@link #replace}.</p>
 * 
 * <p>Note: When <code>length</code> is zero or below the call is not
 * forwarded to the underlying {@link AbstractDocument.Content} instance
 * of this document and no exception is thrown.</p>
 * 
 * @param offset the start offset of the fragment to be removed
 * @param length the length of the fragment to be removed
 *
 * @throws BadLocationException if <code>offset</code> or
 *         <code>offset + length</code> or invalid locations within this
 *         document
 */
public void remove(int offset, int length) throws BadLocationException
{
  writeLock();
  try
    {
      DocumentFilter f = getDocumentFilter();
      if (f == null)
        removeImpl(offset, length);
      else
        f.remove(getBypass(), offset, length);
    }
  finally
    {
      writeUnlock();
    }
}
 
開發者ID:nmldiegues,項目名稱:jvm-stm,代碼行數:36,代碼來源:AbstractDocument.java


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