📄 path.java.source
字号:
/* * Path * * $LastChangedRevision: 2675 $ * * $LastChangedDate: 2004-04-29 01:05:24 +0200 (tor, 29 apr 2004) $ * * Copyright 2002-2004 Norwegian University of Science and Technology * * This file is part of Network Administration Visualized (NAV) * * NAV is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * NAV is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NAV; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */package no.ntnu.nav;/** * <p> This file is part of the NAV project. Defines the system paths * of the NAV installation. </p> * * <p> The actual source of this file has a .source extension, and * will be processed by Ant to have property references expanded (sort * of preprocessing of the code) </p> * * @version $LastChangedRevision: 2675 $ $LastChangedDate: 2004-04-29 01:05:24 +0200 (tor, 29 apr 2004) $ * @author Morten Vold <morten.vold@itea.ntnu.no> * @author Kristian Eide <kreide@online.no> */public class Path { public static String prefix = "${prefix}"; public static String exec_prefix = "${exec_prefix}"; public static String sysconfdir = "${sysconfdir}"; public static String initdir = "${initdir}"; public static String bindir = "${bindir}"; public static String libdir = "${libdir}"; public static String javalibdir = "${javalibdir}"; public static String localstatedir = "${localstatedir}"; public static String webroot = "${webroot}"; public static String tooldir = "${tooldir}";}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -