package com.vci.rmip.code.client.codeapply.Apply410.swing;
|
|
import java.io.Serializable;
|
|
import javax.swing.text.Document;
|
|
import com.vci.base.ui.swing.components.VCIJTextField;
|
|
public class IntegerTextField extends VCIJTextField implements Serializable {
|
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 3885601645788779103L;
|
public IntegerTextField(String text){
|
super(text);
|
}
|
@Override
|
protected Document createDefaultModel(){
|
return new NumberPlainDocument(false);
|
}
|
}
|