1/*
2 * Copyright (C) 2016 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5 * use this file except in compliance with the License. You may obtain a copy of
6 * the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 * License for the specific language governing permissions and limitations under
14 * the License.
15 */
16
17package com.googlecode.android_scripting.event;
18
19import com.google.common.base.Preconditions;
20
21public class Event {
22
23  private String mName;
24  private Object mData;
25  private double mCreationTime;
26
27  public Event(String name, Object data) {
28    Preconditions.checkNotNull(name);
29    setName(name);
30    setData(data);
31    mCreationTime = System.currentTimeMillis();
32  }
33
34  public void setName(String name) {
35    mName = name;
36  }
37
38  public String getName() {
39    return mName;
40  }
41
42  public void setData(Object data) {
43    mData = data;
44  }
45
46  public Object getData() {
47    return mData;
48  }
49
50  public double getCreationTime() {
51    return mCreationTime;
52  }
53
54  public boolean nameEquals(String name) {
55    return mName.equals(name);
56  }
57}
58