📄 connection.java
字号:
// $Id: Connection.java,v 1.5 2000/11/29 17:34:55 daniela Exp $import java.io.*;public class Connection implements Serializable { protected Part p; protected String type = "conn"; protected int length; public Connection() { } public Connection( Part part ) { p = part; } // public void writeExternal (ObjectOutput out) throws IOException { // out.writeObject (p); // out.writeObject (type); // out.writeInt (length); // } // // public void readExternal (ObjectInput in) throws IOException, ClassNotFoundException { // p = (Part)in.readObject(); // type = (DxString)in.readObject(); // length = in.readInt(); // } public void done() throws Exception { } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -