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

📄 applicationmanager.java

📁 PIY(Program It Yourself)是一个基于Java的应用程序开发环境
💻 JAVA
字号:
package piy;

import java.io.*;

/**
* This class is primarily in place to allow actions to retrieve 
* information about the currently running project.
* @author David Vivash
* @version 1.0, 20/04/01
*/
public class ApplicationManager 
{

	private Application app = null;
	private static ApplicationManager instance = null; 

	private ApplicationManager() {
	}

	public static ApplicationManager getInstance() {
		return (instance == null) ? instance = new ApplicationManager() :
									instance;
	}
	
	protected void setApplication(Application app) {
		this.app = app;
	}
	
	public Application getApplication() { return app; }
	
}

⌨️ 快捷键说明

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