📄 pathmapping.java
字号:
/* * PathMapping.java * * Created on December 12, 2002, 11:26 AM */package jcdwriter.model;/** * * @author rmallappa */public class PathMapping { String source; //real path on file system. String destination; //where it is going to be on virtual file system. /** Creates a new instance of PathMapping */ public PathMapping() { this("/source/not/specified", "/destination/not/specified"); } public PathMapping(String aSourcePath, String aDestinationPath) { source = aSourcePath; destination = aDestinationPath; } public String source(){ return source; } public String destination(){ return destination; } public String toString(){ StringBuffer sb = new StringBuffer();// sb.append("\""); sb.append(destination);// sb.append("\""); sb.append("=");// sb.append("\""); sb.append(source);// sb.append("\""); return sb.toString(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -