📄 env.java
字号:
// Decompiled by Jad v1.5.8f. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3)
// Source File Name: Env.java
package open_cmpp.hw;
import com.huawei.insa2.util.Cfg;
import com.huawei.insa2.util.Resource;
import java.io.IOException;
public class Env
{
public Env()
{
}
public static Cfg getConfig()
{
if(config == null)
try
{
config = new Cfg("app.xml");
}
catch(Exception ex)
{
ex.printStackTrace();
}
return config;
}
public static Resource getResource()
{
if(resource == null)
try
{
resource = new Resource("resource");
}
catch(IOException ex)
{
ex.printStackTrace();
}
return resource;
}
static Cfg config;
static Resource resource;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -