• Sign in

李攀 / fangTang · Files

Favicon

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Network
  • fangTang
  • ..
  • event
  • DataEvent.java
  • lights lib and basic control
      12ab67e2
    Penley authored
    2017-02-14 14:49:15 +0800  
    Browse Files »
DataEvent.java 405 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Copyright (C) 2015 The Telink Bluetooth Light Project
 *
 */
package com.telink.bluetooth.event;

import com.telink.util.Event;

public class DataEvent<A> extends Event<String> {

    protected A args;

    public DataEvent(Object sender, String type, A args) {
        super(sender, type);
        this.args = args;
    }

    public A getArgs() {
        return args;
    }
}