📄 textfieldhitenterevent.java
字号:
/*
* TextFieldHitEnterEvent.java
*
* Created on 10 March 2006, 23:12
*
* Christian Azzopardi
*/
package issrg.utils.xml;
import java.awt.AWTEvent;
public class TextFieldHitEnterEvent extends AWTEvent
{
String textValue;
int index;
/** Creates a new instance of TextFieldHitEnterEvent */
public TextFieldHitEnterEvent(Object source, int index, String textValue)
{
super(source,1);
this.index = index;
this.textValue = textValue;
}
public String getTextValue()
{
return this.textValue;
}
public int getIndexValue()
{
return this.index;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -