Blame |
Last modification |
View Log
| RSS feed
package dongfang.mkt.frames;
import java.io.IOException;
import dongfang.mkt.RequestFrameVisitor;
public class DCMMatrixRequestFrame
extends RequestFrame
{
public DCMMatrixRequestFrame
() {
super(FC_ADDRESS
);
}
public void accept
(RequestFrameVisitor o
) throws IOException {
o.
visit(this);
}
}