Subversion Repositories Projects

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

package dongfang.mkt.frames;

import java.io.IOException;

import dongfang.mkt.RequestFrameVisitor;

public class VariablesRequestFrame extends RequestFrame {
        VariablesRequestFrame(int address) {
                super(address);
        }

        @Override
        public void accept(RequestFrameVisitor o) throws IOException {
                o.visit(this);
        }
}