wuxw
2019-04-29 0894b9328ae1c11146175b492ae348bbd4b13404
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.java110.event.app.pay;
 
import com.java110.core.context.AppContext;
import com.java110.event.app.AppEvent;
 
/**
 *
 * 支付事件
 * Created by wuxw on 2017/4/14.
 */
public class AppPayEvent extends AppEvent {
 
    /**
     * Constructs a prototypical Event.
     *
     * @param source The object on which the Event initially occurred.
     * @throws IllegalArgumentException if source is null.
     */
    public AppPayEvent(Object source, AppContext context) {
        super(source,context);
    }
 
}