message.java

来自「一个很好的微工作流内核」· Java 代码 · 共 23 行

JAVA
23
字号
/* * 	  *  Copyright (c) 2002 Dragos Manolescu (dam@micro-workflow.com) *  *  See the LICENSE file for licensing information. */package com.microworkflow.execution;import java.lang.reflect.Method;public class Message {	Method method;	Object[] arguments;		public Message(Method method, Object[] args) {		this.method = method;		this.arguments = args;	}}

⌨️ 快捷键说明

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