📄 idlmodule.java
字号:
package com.corba.mnq.tool.idl;
import java.util.logging.Logger;
import com.corba.mnq.tool.BNFTool;
import com.corba.mnq.tool.LoggerTool;
public class IdlModule extends IdlBase {
public IdlModule() {
super();
// TODO Auto-generated constructor stub
}
/** used for java.util.logging */
private static final Logger LOG = Logger.getLogger(IdlModule.class
.getName());
public void recurContent() {
String res = BNFTool.findModule(val, sibling, cName, (IdlFile) fn);
res = BNFTool.findInterface(res, sibling, cName, (IdlFile) fn);
// res = BNFTool.findAttrs(res, sibling, cName, (IdlFile)
// fn);
res = BNFTool.findTypes(res, sibling, cName, (IdlFile) fn);
res = BNFTool.findExceptions(res, sibling, cName, (IdlFile) fn);
res = BNFTool.findConst(res, sibling, cName, (IdlFile) fn);
// System.out.println(cName + res);
LoggerTool.checkRemainedContent(LOG, res, this);
for (int i = 0; i < sibling.size(); i++) {
IdlBase sib = (IdlBase) sibling.get(i);
sib.recurContent();
}
}
public String getIconName() {
return "module.gif";
}
/**
* @param args
*/
public static void main_(String[] args) {
// TODO Auto-generated method stub
}
}
/* EOF */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -