studentinfopanel.java~1~
来自「使用JBuilder基于Oracle数据库的课程作业」· JAVA~1~ 代码 · 共 26 行
JAVA~1~
26 行
package superframe;
import java.awt.event.ActionListener;
public class StudentInfoPanel extends InfoPanel{
public StudentInfoPanel(boolean e,String keyvalue){
textPanel=new StudentTextPanel("select * from studentinfo where Stu_no='"+keyvalue+"'",e);
initialize(e);
}
public StudentInfoPanel(boolean e){
textPanel=new StudentTextPanel("select * from studentinfo where Stu_no='"+""+"'",e);
initialize(e);
}
public void resetKeyValue(String keyValue) {
resetTextSql("select * from studentinfo where Stu_no='"+keyValue+"'");
}
/*public void createTextPanel(){
this.textPanel=new StudentTextPanel("select * from studentinfo where Stu_no='"+keyvalue+"'",enable);
}*/
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?