-
Notifications
You must be signed in to change notification settings - Fork 0
/
SearchKeyword.java
53 lines (43 loc) · 1.03 KB
/
SearchKeyword.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3)
// Source File Name: SearchKeyword.scala
package com.newspipes.server.core;
import com.google.gwt.user.client.rpc.IsSerializable;
import java.rmi.RemoteException;
import scala.ScalaObject;
public class SearchKeyword
implements IsSerializable, ScalaObject
{
public SearchKeyword(String key, String value, int count)
{
this.value = value;
this.count = count;
super();
}
public SearchKeyword()
{
Object _tmp = null;
Object _tmp1 = null;
this(null, null, 0);
}
public void count_$eq(int x$1)
{
count = x$1;
}
public int count()
{
return count;
}
public String value()
{
return value;
}
public int $tag()
throws RemoteException
{
return scala.ScalaObject.class.$tag(this);
}
private int count;
private final String value;
}