当前位置: 首页>>代码示例>>Java>>正文


Java DocumentFilter类代码示例

本文整理汇总了Java中javax.swing.text.DocumentFilter的典型用法代码示例。如果您正苦于以下问题:Java DocumentFilter类的具体用法?Java DocumentFilter怎么用?Java DocumentFilter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


DocumentFilter类属于javax.swing.text包,在下文中一共展示了DocumentFilter类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: insertString

import javax.swing.text.DocumentFilter; //导入依赖的package包/类
/** Inserts string into document */
    public @Override void insertString(int offset, String text, AttributeSet attrs)
    throws BadLocationException {
//        if (LOG_EDT.isLoggable(Level.FINE)) { // Only permit operations in EDT
//            // Disabled due to failing OpenEditorEnablesEditMenuFactoryTest
//            if (!SwingUtilities.isEventDispatchThread()) {
//                throw new IllegalStateException("BaseDocument.insertString not in EDT: offset=" + // NOI18N
//                        offset + ", text=" + org.netbeans.lib.editor.util.CharSequenceUtilities.debugText(text)); // NOI18N
//            }
//        }
        
        // Always acquire atomic lock (it simplifies processing and improves readability)
        atomicLockImpl();
        try {
            checkModifiable(offset);
            DocumentFilter filter = getDocumentFilter();
            if (filter != null) {
                filter.insertString(getFilterBypass(), offset, text, attrs);
            } else {
                handleInsertString(offset, text, attrs);
            }
        } finally {
            atomicUnlockImpl(true);
        }
    }
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:26,代码来源:BaseDocument.java

示例2: replace

import javax.swing.text.DocumentFilter; //导入依赖的package包/类
public void replace(int offset, int length, String text, AttributeSet attrs) throws BadLocationException {
    // Always acquire atomic lock (it simplifies processing and improves readability)
    atomicLockImpl();
    try {
        checkModifiable(offset);
        DocumentFilter filter = getDocumentFilter();
        if (filter != null) {
            filter.replace(getFilterBypass(), offset, length, text, attrs);
        } else {
            handleRemove(offset, length);
            handleInsertString(offset, text, attrs);
        }
    } finally {
        atomicUnlockImpl(true);
    }
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:17,代码来源:BaseDocument.java

示例3: remove

import javax.swing.text.DocumentFilter; //导入依赖的package包/类
@Override
public void remove(DocumentFilter.FilterBypass fb, int offset, int length)
        throws BadLocationException {
    if (skipFiltersWhileTrue) {
        super.remove(fb, offset, length);
        return;
    }
    String oldText = fb.getDocument().getText(0, fb.getDocument().getLength());
    StringBuilder newTextBuilder = new StringBuilder(oldText);
    newTextBuilder.delete(offset, (offset + length));
    String newText = newTextBuilder.toString();
    if (newText.trim().isEmpty() || oldText.equals("-1")) {
        setFieldToDefaultValue();
    } else if (allowNegativeNumbers() && newText.trim().equals("-")) {
        setFieldToNegativeOne();
    } else if (isValidInteger(newText)) {
        super.remove(fb, offset, length);
    } else {
        Toolkit.getDefaultToolkit().beep();
    }
}
 
开发者ID:LGoodDatePicker,项目名称:LGoodDatePicker,代码行数:22,代码来源:JIntegerTextField.java

示例4: PlugboardPanel

import javax.swing.text.DocumentFilter; //导入依赖的package包/类
public PlugboardPanel() {
	
	// Create component
	pbField = new JTextField(95);
	pbField.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createLineBorder(Color.gray), BorderFactory.createEmptyBorder(5, 5, 5, 5)));
	
	// Adding border
	Border outerBorder = BorderFactory.createEmptyBorder(5, 5, 5, 5);
	innerBorder = BorderFactory.createTitledBorder("Plugboard (e.g. AB CD) - Press \"SAVE\"");
	setBorder(BorderFactory.createCompoundBorder(outerBorder, innerBorder));
	
	// Add component
	add(pbField);
	
	// Filter input to upper case only
	( (AbstractDocument) pbField.getDocument() ).setDocumentFilter(new DocumentFilter(){
		public void replace(FilterBypass fb, int offset, int length, String text, AttributeSet attrs) throws BadLocationException {
			for (int i = 0; i < text.length(); i++) 
				if( (text.charAt(i) < 'a' || text.charAt(i) > 'z') && (text.charAt(i) < 'A' || text.charAt(i) > 'Z') && text.charAt(0) != ' ')
					return;
			super.replace(fb, offset, length, text.toUpperCase(), attrs);
		}
	});
}
 
开发者ID:amirbawab,项目名称:Enigma-machine-simulator,代码行数:25,代码来源:PlugboardPanel.java

示例5: replace

import javax.swing.text.DocumentFilter; //导入依赖的package包/类
/**
 * Replace a string in the document, and then parse it if the parser has been
 * set.
 *
 * @param fb
 * @param offset
 * @param length
 * @param text
 * @param attrs
 * @throws BadLocationException
 */    
public void replace(DocumentFilter.FilterBypass fb, int offset, 
                    int length, String text, AttributeSet attrs)
    throws BadLocationException
{
    // text might be null and indicates no replacement text
    if (text == null) text = "";
    
    // remove problem meta characters returns
    text = replaceMetaCharacters(text);
    
    fb.replace(offset, length, text, attrs);
    
    // start on the text that was replaced
    parseDocument(offset, text.length());
}
 
开发者ID:apache,项目名称:groovy,代码行数:27,代码来源:StructuredSyntaxDocumentFilter.java

示例6: insertString

import javax.swing.text.DocumentFilter; //导入依赖的package包/类
public void insertString(DocumentFilter.FilterBypass fb, int offset,
		String string, AttributeSet attr) throws BadLocationException {

	if (string == null) {
		return;
	} else {
		String newValue;
		Document doc = fb.getDocument();
		int length = doc.getLength();
		if (length == 0) {
			newValue = string;
		} else {
			String currentContent = doc.getText(0, length);
			StringBuilder currentBuffer = new StringBuilder(
					currentContent);
			currentBuffer.insert(offset, string);
			newValue = currentBuffer.toString();
		}
		currentValue = checkInput(newValue, offset);
		fb.insertString(offset, string, attr);
	}
}
 
开发者ID:thingweb,项目名称:thingweb-gui,代码行数:23,代码来源:AbstractDocumentFilter.java

示例7: insertString

import javax.swing.text.DocumentFilter; //导入依赖的package包/类
@Override
public void insertString(DocumentFilter.FilterBypass fb, int offset, String text,
	AttributeSet attr) throws BadLocationException {
	StringBuilder sb = new StringBuilder();
	for(int i = 0; i < text.length(); i++){
		char c = text.charAt(i);
		boolean isLegal = true;
		for(char illegal : illegalChars){
			if(c == illegal){
				isLegal = false;
				break;
			}
		}
		if(isLegal){
			sb.append(c);
		}
	}
	text = sb.toString();
	super.insertString(fb, offset, text, attr);
}
 
开发者ID:QuinnFreedman,项目名称:THINK-VPL,代码行数:21,代码来源:SpecialEditorPane.java

示例8: replace

import javax.swing.text.DocumentFilter; //导入依赖的package包/类
@Override
public void replace(DocumentFilter.FilterBypass fb, int offset, int length, String text,
	AttributeSet attrs) throws BadLocationException {
	//String curentText = doc.getText(0, Math.min(4, doc.getLength()));
	/*if(doc.getLength() >= 4 && curentText.equals("true")){
		text = "true";
		offset = 0;
		length = doc.getLength();
	}else if(doc.getLength() >= 5){
		text = "false";
		offset = 0;
		length = doc.getLength();
	}*/
	if(doc.getText(0,Math.min(1, doc.getLength())).equals("t") || doc.getText(0,Math.min(1, doc.getLength())).equals("T") || (text.equals("t")) || (text.equals("T")) || (text.equals("true"))){
		text = "true";
		offset = 0;
		length = doc.getLength();
	}else{
		text = "false";
		offset = 0;
		length = doc.getLength();
	}
	super.replace(fb, offset, length, text, attrs);
}
 
开发者ID:QuinnFreedman,项目名称:THINK-VPL,代码行数:25,代码来源:VBoolean.java

示例9: replace

import javax.swing.text.DocumentFilter; //导入依赖的package包/类
@Override
public void replace(DocumentFilter.FilterBypass fb, int offset, int length, String str, AttributeSet attrs) throws BadLocationException {
    //XXX Attention : par défaut, dans Swing, insertString et remove appellent tous les deux replace, et non l'inverse
    if(str!=null && str.length()!=0) {//y aura-t-il une insertion ?
        if(length>0) {//il y aura aussi un remove
            undo.valider();
            flagRemove=true; remove(fb, offset, length);//remove sans valider le groupe d'edit
            flagInsert=true; insertString(fb, offset, str, attrs);//insert sans valider le groupe d'edit
            flagInsert=false; flagRemove=false;
        } else {//il s'agissait d'un insert déguisé
            insertString(fb, offset, str, attrs);
        }
    } else {//il s'agissait d'un remove déguisé
        remove(fb, offset, length);
    }
}
 
开发者ID:Sharcoux,项目名称:MathEOS,代码行数:17,代码来源:JMathTextPane.java

示例10: insertString

import javax.swing.text.DocumentFilter; //导入依赖的package包/类
@Override
public void insertString(DocumentFilter.FilterBypass fb, int offset, String string, AttributeSet attr)
        throws BadLocationException {
    if (useFilters) {
        // determine if we can insert
        if (console.getSelectionStart() >= console.editStart) {
            // can insert
            fb.insertString(offset, string, attr);
        } else {
            // insert at the end of the document
            fb.insertString(console.getText().length(), string, attr);
            // move cursor to the end
            console.getCaret().setDot(console.getText().length());
            // console.setSelectionEnd(console.getText().length());
            // console.setSelectionStart(console.getText().length());
        }
    } else {
        fb.insertString(offset, string, attr);
    }
}
 
开发者ID:opensim-org,项目名称:opensim-gui,代码行数:21,代码来源:JConsole.java

示例11: replace

import javax.swing.text.DocumentFilter; //导入依赖的package包/类
@Override
public void replace(DocumentFilter.FilterBypass fb, int offset, int length, String text, AttributeSet attrs)
        throws BadLocationException {
    if (useFilters) {
        // determine if we can replace
        if (console.getSelectionStart() >= console.editStart) {
            // can replace
            fb.replace(offset, length, text, attrs);
        } else {
            // insert at end
            fb.insertString(console.getText().length(), text, attrs);
            // move cursor to the end
            console.getCaret().setDot(console.getText().length());
            // console.setSelectionEnd(console.getText().length());
            // console.setSelectionStart(console.getText().length());
        }
    } else {
        fb.replace(offset, length, text, attrs);
    }
}
 
开发者ID:opensim-org,项目名称:opensim-gui,代码行数:21,代码来源:JConsole.java

示例12: remove

import javax.swing.text.DocumentFilter; //导入依赖的package包/类
@Override
public void remove(DocumentFilter.FilterBypass fb, int offset, int length) throws BadLocationException {
    if (useFilters) {
        if (offset > console.editStart) {
            // can remove
            fb.remove(offset, length);
        } else {
            // only remove the portion that's editable
            fb.remove(console.editStart, length - (console.editStart - offset));
            // move selection to the start of the editable section
            console.getCaret().setDot(console.editStart);
            // console.setSelectionStart(console.editStart);
            // console.setSelectionEnd(console.editStart);
        }
    } else {
        fb.remove(offset, length);
    }
}
 
开发者ID:opensim-org,项目名称:opensim-gui,代码行数:19,代码来源:JConsole.java

示例13: replace

import javax.swing.text.DocumentFilter; //导入依赖的package包/类
@Override
public void replace(DocumentFilter.FilterBypass fb, int offset, int length, String string, AttributeSet attrs) throws BadLocationException {
    Document document = fb.getDocument();
    if (length > 0) {
        fb.remove(offset, length);
    }
    for (int i = 0; i < string.length(); i++) {
        char charNow = string.charAt(i);
        if (Character.isDigit(charNow)) {
            fb.replace(offset, 0, String.valueOf(charNow), attrs);
        } else if (charNow == '.' || charNow == ',') {
            if (!document.getText(0, document.getLength()).contains(".")) {
                fb.replace(offset, 0, ".", attrs);

            }
        }
        offset++;
    }
}
 
开发者ID:jmayer13,项目名称:academia_biometria,代码行数:20,代码来源:DecimalNumberDocumentFilter.java

示例14: insertString

import javax.swing.text.DocumentFilter; //导入依赖的package包/类
@Override
public void insertString(DocumentFilter.FilterBypass fb, int offset, String string, AttributeSet attr) throws BadLocationException {
	String content = fb.getDocument().getText(0, fb.getDocument().getLength());
	StringBuffer sb = new StringBuffer();
	if (offset < fb.getDocument().getLength()) {
		if (offset>0) sb.append(content.substring(0, offset));
		sb.append(string);
		sb.append(content.substring(offset, content.length()));
	}
	else {
		sb.append(content);
		sb.append(string);
	}
	
	super.insertString(fb, offset, string, attr);
	
	boolean success;
	if (!(success=validator.validateString(window, sb.toString())))
		super.remove(fb, offset, string.length());
	
	if (output!=null)
		notifyOutput(success);
}
 
开发者ID:relvaner,项目名称:tools4j-validator,代码行数:24,代码来源:ValidationDocumentFilter.java

示例15: buildFilter

import javax.swing.text.DocumentFilter; //导入依赖的package包/类
public static DocumentFilter buildFilter(DocumentFilterType type, boolean notNull) {
	
	DocumentFilter filter = new DocumentFilter();
	
	switch(type) {
		
		case INT:
			filter = new IntFilter(notNull);
		break;
			
		case DATABASE_COLUMN_NAME_LENGTH:
			filter = new DatabaseColumnNameLengthFilter();
		break;
	}
	
	return filter;
}
 
开发者ID:ligenzatomas,项目名称:firebird-vizualization-tool,代码行数:18,代码来源:DocumentFilterFactory.java


注:本文中的javax.swing.text.DocumentFilter类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。