freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

javamysql學生信息管理系統(tǒng)課程設(shè)計報告(編輯修改稿)

2024-09-10 11:13 本頁面
 

【文章內(nèi)容簡介】 。 (課程名稱:)。 (new Font(Dialog,0,12))。 girdBagCon = new GridBagConstraints()。 = 2。 = 0。 = new Insets(10,15,10,1)。 (jLabel2,girdBagCon)。 (jLabel2)。 girdBagCon = new GridBagConstraints()。 = 3。 = 0。 = new Insets(10,1,10,10)。 (cName,girdBagCon)。 (cName)。 (授課老師:)。 (new Font(Dialog,0,12))。 girdBagCon = new GridBagConstraints()。 = 0。 = 1。 = new Insets(10,10,10,1)。 (jLabel3,girdBagCon)。 (jLabel3)。 girdBagCon = new GridBagConstraints()。 = 1。 = 1。 = new Insets(10,1,10,15)。 (cTeacher,girdBagCon)。 (cTeacher)。 (課程學分:)。 (new Font(Dialog,0,12))。 girdBagCon = new GridBagConstraints()。 = 2。 = 1。 = new Insets(10,15,10,1)。 (jLabel4,girdBagCon)。 (jLabel4)。 girdBagCon = new GridBagConstraints()。 = 3。 = 1。 = new Insets(10,1,10,10)。 (cPoint,girdBagCon)。 (cPoint)。 (課程系數(shù):)。 (new Font(Dialog,0,12))。 girdBagCon = new GridBagConstraints()。 = 0。 = 2。 = new Insets(10,10,10,1)。 (jLabel5,girdBagCon)。 (jLabel5)。 girdBagCon = new GridBagConstraints()。 = 1。 = 2。 = new Insets(10,1,10,15)。 (cRatio,girdBagCon)。 (cRatio)。 (上課地點:)。 (new Font(Dialog,0,12))。 girdBagCon = new GridBagConstraints()。 = 2。 = 2。 = new Insets(10,15,10,1)。 (jLabel6,girdBagCon)。 (jLabel6)。 girdBagCon = new GridBagConstraints()。 = 3。 = new Insets(10,1,10,10)。 (cPlace,girdBagCon)。 (cPlace)。 (centerPanel,)。 } /** * 下部面板的布局 */ public void downInit(){ (查詢)。 (new Font(Dialog,0,12))。 (searchInfo)。 (增加)。 (new Font(Dialog,0,12))。 (addInfo)。 (修改)。 (new Font(Dialog,0,12))。 (modifyInfo)。 (刪除)。 (new Font(Dialog,0,12))。 (deleteInfo)。 (保存)。 (new Font(Dialog,0,12))。 (saveInfo)。 (清空)。 (new Font(Dialog,0,12))。 (clearInfo)。 (退出)。 (new Font(Dialog,0,12))。 (eixtInfo)。 (downPanel,)。 //添加事件偵聽 (this)。 (this)。 (this)。 (this)。 (this)。 (this)。 (this)。 } /** * 事件處理 */ public void actionPerformed(ActionEvent e) { Object obj = ()。 if (obj == searchInfo) { //查詢 } else if (obj == addInfo) { //增加 } else if (obj == modifyInfo) { //修改 } else if (obj == deleteInfo) { //刪除 } else if (obj == saveInfo) { //保存 } else if (obj == clearInfo) { //清空 } else if (obj == eixtInfo) { //退出 ()。 } } /** * 將文本框清空 */ void setNull(){ (null)。 (null)。 (null)。 (null)。 (null)。 (null)。 } /** * 通過給定的文件名獲得圖像 */ Image getImage(String filename) { URLClassLoader urlLoader = (URLClassLoader)(). getClassLoader()。 URL url = null。 Image image = null。 url = (filename)。 image = ().getImage(url)。 MediaTracker mediatracker = new MediaTracker(this)。 try { (image, 0)。 (0)。 } catch (InterruptedException _ex) { image = null。 } if ((0)) { image = null。 } return image。 }}//////////////////////////////////import .*。import .*。import .*。/** * 課程信息管理模塊 * 根據(jù)課程編號查詢課程信息,以供調(diào)用者修改或刪除 */public class CourseInfoSearchCnum extends JDialog implements ActionListener{ Container contentPane。 String[] s。 //框架的大小 Dimension faceSize = new Dimension(300, 100)。 JLabel jLabel1 = new JLabel()。 JComboBox selectCnum。 JButton searchInfo = new JButton()。 public CourseInfoSearchCnum(JFrame frame) { super(frame, true)。 (false)。 try { Init()。 } catch (Exception e) { ()。 } //設(shè)置運行位置,使對話框居中 Dimension screenSize = ().getScreenSize()。 ( (int) ( 400) / 2 , (int) ( 300) / 2 + 45)。 } private void Init() throws Exception { (faceSize)。 contentPane = ()。 (new FlowLayout())。 (請輸入或者選擇課程號:)。 (new Font(Dialog,0,12))。 (jLabel1)。 CrsBean getId = new CrsBean()。 s = ()。 selectCnum = new JComboBox(s)。 (null)。 (true)。 (new Font(Dialog,0,12))。 (selectCnum)。 (查詢)。 (new Font(Dialog,0,12))。 (searchInfo)。 (this)。 (this)。 } /** * 事件處理 */ public void actionPerformed(ActionEvent e) { Object obj = ()。 if (obj == selectCnum) { //退出 ()。 } else if (obj == searchInfo) { //修改 ()。 } } /** * 返回選擇的學號 */ public String getCnum(){ return (String)()。 }}//////////////////////////////////import .*。import .*。import .*。import .*。/** * 課程信息查詢模塊 * 根據(jù)課程名稱查詢課程的信息 */public class CourseSearchCname extends JFrame implements ActionListener{ Container contentPane。 //框架的大小 Dimension faceSize = new Dimension(300, 100)。 JLabel jLabel1 = new JLabel()。 JTextField cName = new JTextField(8)。 JButton searchInfo = new JButton()。 public CourseSearchCname() { //設(shè)置標題 (按課程名稱查詢)。 (false)。 //設(shè)置程序圖標 (getImage())。 try { Init()。 } catch (Exception e) { ()。 } //設(shè)置運行位置,使對話框居中 Dimension screenSize = ().getScreenSize()。 ( (int) ( 400) / 2 , (int) ( 300) / 2 + 45)。 } private void Init() throws Exception { (faceSize)。 contentPane = ()。 (new FlowLayout())。 (請輸入課程名稱: )。 (new Font(Dialog,0,12))。 (jLabel1)。 (null)。 (new Font(Dialog,0,12))。 (cName)。 (確定)。 (new Font(Dialog,0,12))。 (searchInfo)。 (this)。 } /** * 事件處理 */ public void actionPerformed(ActionEvent e) { Object obj = ()。 if (obj == searchInfo) { //查詢 ResultCourse rC = new ResultCourse(ame,())。 ()。 } } /** * 通過給定的文件名獲得圖像 */ Image getImage(String filename) { URLClassLoader urlLoader = (URLClassLoader)(). getClassLoader()。 URL url = null。 Image image = null。 url = (filename)。 image = ().getImage(url)。 MediaTracker mediatracker = new MediaTracker(this)。 try { (image, 0)。 (0)。 } catch (InterruptedException _ex) { image = null。 } if ((0)) { imag
點擊復制文檔內(nèi)容
物理相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖片鄂ICP備17016276號-1