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

📄 resource.java

📁 Memoranda( 从前以jNotes2而闻名) 是一个日志管理和个人项目管理工具
💻 JAVA
字号:
/** * Resource.java * Created on 04.04.2003, 20:59:24 Alex * Package: net.sf.memoranda *   * @author Alex V. Alishevskikh, alex@openmechanics.net * Copyright (c) 2003 Memoranda Team. http://memoranda.sf.net */package net.sf.memoranda;/** *  *//*$Id: Resource.java,v 1.4 2007/03/20 06:21:46 alexeya Exp $*/public class Resource {        private String _path = null;	// the path to the file    private boolean _isInetShortcut = false; // true if Internet shortcut    private boolean _isProjectFile = false;	// true if file is in project directory     /**     * Constructor for Resource.     * @param path, the path to the file.     * @param isInetShortcut, if the resource is a internet shortcut.     * @param isProjectFile, if file is copied to project directory.     */    public Resource(String path, boolean isInetShortcut, boolean isProjectFile) {        _path = path;        _isInetShortcut = isInetShortcut;        _isProjectFile = isProjectFile;    }        public Resource(String path) {        _path = path;             }        public String getPath() {        return _path;    }        public boolean isInetShortcut() {        return _isInetShortcut;    }        public boolean isProjectFile() {    	return _isProjectFile;    }}

⌨️ 快捷键说明

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