Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1695 - 1
package dongfang.mkt.frames;
2
 
3
import java.io.IOException;
4
 
5
import dongfang.mkt.RequestFrameVisitor;
6
 
7
 
8
public class DCMMatrixRequestFrame extends RequestFrame {
9
 
10
        public DCMMatrixRequestFrame() {
11
                super(FC_ADDRESS);
12
        }
13
 
14
        public void accept(RequestFrameVisitor o) throws IOException {
15
                o.visit(this);
16
        }
17
}