Project

General

Profile

1
package org.kepler.web.client;
2

    
3
import com.google.gwt.user.client.rpc.*;
4
import com.google.gwt.user.client.rpc.IsSerializable;
5

    
6
import java.io.*;
7
import java.util.*;
8

    
9
public class MetacatQueryResult implements IsSerializable
10
{
11
  private String name = "";
12
  private String docid = "";
13
  private String description = "";
14
  
15
  public MetacatQueryResult()
16
  {
17
    
18
  }
19
  
20
  public MetacatQueryResult(String name, String docid, String description)
21
  {
22
    this.name = name;
23
    this.docid = docid;
24
    this.description = description;
25
  }
26
  
27
  public String getName()
28
  {
29
    return name;
30
  }
31
  
32
  public String getDocid()
33
  {
34
    return docid;
35
  }
36
  
37
  public String getDescription()
38
  {
39
    return description;
40
  }
41
  
42
  public void setName(String name)
43
  {
44
    this.name = name;
45
  }
46
  
47
  public void setDocid(String docid)
48
  {
49
    this.docid = docid;
50
  }
51
  
52
  public void setDescription(String desc)
53
  {
54
    this.description = description;
55
  }
56
}
(6-6/7)