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

📄 tableinformation.java

📁 Athena酒店小组_Athena酒店管理系统
💻 JAVA
字号:
/*
 * TableInformation.java
 *
 * Created on 2007年6月18日, 上午1:42
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package module;

import java.util.*;
import javax.swing.*;

import frames.*;
import plugin.*;

/**
 *
 * @author dennis
 */
public class TableInformation implements IAppPlugin{
    
    private IGUIResource guiRes;
    private IDBResource dbRes;
    
    /** Creates a new instance of TableInformation */
    public TableInformation() {
    }
     public void setMenuItem(JMenuItem item)
    {
    }
    
    public void loadResource(IGUIResource guiRes, IDBResource dbRes)
    {
	this.guiRes = guiRes;
	this.dbRes = dbRes;
    }
    
    public void runApp()
    {
	TableInformationFrame frame = new TableInformationFrame();
	guiRes.getDesktopPane().add(frame);
	frame.setVisible(true);
    }
    
    public void initPlugin()
    {
	Resource.setDBResource(dbRes);
	Resource.setGUIResource(guiRes);
    }
    
       public String getVersion()
    {
	return "1.0";
    }
    
    public String getName()
    {
	return "桌位信息";
    }
    
    public String getDescription()
    {
	return "查看桌位的使用情况";
    }
    
    public String getAuthor()
    {
	return "Dennis";
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -