sockettransactionprocessor.java
来自「UML for Java Programmers中文版源码」· Java 代码 · 共 30 行
JAVA
30 行
package com.objectmentor.SMCRemote.transactions;
public class SocketTransactionProcessor {
public void process(CompileFileTransaction t) throws Exception {
throw new NoProcessorException("CompileFileTransaction");
}
public void process(CompilerResultsTransaction t) throws Exception {
throw new NoProcessorException("CompilerResultsTransaction");
}
public void process(LoginTransaction t) throws Exception {
throw new NoProcessorException("LoginTransaction");
}
public void process(LoginResponseTransaction t) throws Exception {
throw new NoProcessorException("LoginResponseTransaction");
}
public void process(RegistrationTransaction t) throws Exception {
throw new NoProcessorException("RegistrationTransaction");
}
public void process(RegistrationResponseTransaction t) throws Exception {
throw new NoProcessorException("RegistrationResponseTransaction");
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?