?? pipepair.java
字號:
package connex.core.net;
import net.jxta.pipe.*;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2006</p>
*
* <p>Company: </p>
*
* @author Hisham Khalil <a HREF="mailto:hishberlin@hotmail.com"> hishberlin@hotmail.com</a>
* @version 1.0
*/
public class PipePair {
private InputPipe in;
private OutputPipe out;
public PipePair(InputPipe in,OutputPipe out) {
this.in = in;
this.out=out;
}
/**
*
* @return net.jxta.pipe.InputPipe
*/
public InputPipe getInputPipe(){
return this.in ;
}
/**
*
* @return net.jxta.pipe.OutputPipe
*/
public OutputPipe getOutputPipe(){
return this.out;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -