jtinterface.java

来自「Java Pattern Oriented Framework (Jt) 是为了」· Java 代码 · 共 27 行

JAVA
27
字号


package Jt;


/**
  * This interface implements the messaging pattern. JtInterface defines a single method
  * to process a message and return a reply.
  * All the Jt Objects need to implement this interface directly or indirectly by subclassing
  * JtOject (or one of its subclasses). JtObject implements the JtInterface.    
  */

public interface JtInterface  {

/**
  * Jt messaging interface used for the implementation
  * of the messaging design pattern.
  * Process a message and return a reply. 
  */

  Object processMessage (Object msg);  


}


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?