SceneHandler.java 227 B

123456789
  1. package com.fdkankan.modeling.handler;
  2. import java.util.Map;
  3. public interface SceneHandler {
  4. void handle(Map<String,String> context) throws Exception;
  5. void afterHandle(Map<String,String> context) throws Exception;
  6. }