⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 textfieldhitenterevent.java

📁 一个完整的XACML工程,学习XACML技术的好例子!
💻 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 + -