config.java~20~

来自「源代码统计软件」· JAVA~20~ 代码 · 共 36 行

JAVA~20~
36
字号
package stat;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: </p> * @author unascribed * @version 1.0 */import java.util.*;public class Config {    public static Vector statV = null;//[[[filename],[物力行数],[逻辑行],[注释行]],[],[]]    public static int TotalLine = 0;    public static int LogicLine = 0;    public static int RemarkLine = 0;    public static String htmlHead = "<html><head><meta http-equiv='Content-Language\' content='zh-cn\'>"+                             "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=gb2312\">"+                             "<meta name=\"GENERATOR\" content=\"Microsoft FrontPage 4.0\">"+                             "<meta name=\"ProgIdv\" content=\"FrontPage.Editor.Document\">"+                             "<title>FileName</title>"+                             "</head><body><table border=\"1\" width=\"100%\"> <tr><td width=\"25%\"><font color=\"#808000\">FileName</font></td><td width=\"25%\"><font color=\"#808000\">TotalLine</font></td><td width=\"25%\"><font color=\"#808000\">LogicLine</font></td><td width=\"25%\"><font color=\"#808000\">RemarkLine</font></td></tr>";    public static String htmlTail = "</table></body></html>";    public static String tr = "<tr>";    public static String end_tr = "</tr>";    public static String td = "<td width=\"25%\">";    public static String end_td = "</td>";    public static String font1 = "<font color=\"#808000\">";    public static String font2 = "<font color=\"#0000FF\">";    public static String end_font = "</font>";    public Config() {    }    public static void main(String[] args) {        Config config1 = new Config();    }}

⌨️ 快捷键说明

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