summaryrefslogtreecommitdiff
path: root/libjava/gnu/gcj/xlib/XID.java
blob: f7bb9cfc994648f71366d92a65d90fd7f8c318db (plain)
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
54
55
56
57
58
/* Copyright (C) 2000  Free Software Foundation

   This file is part of libgcj.

This software is copyrighted work licensed under the terms of the
Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
details.  */

package gnu.gcj.xlib;

/**
 * Common base class for all resources that are stored on the server
 * and refered to on the client side using XIDs.
 *
 * @author Rolf W. Rasmussen <rolfwr@ii.uib.no>
 */
public class XID
{
  public XID(Display display, int xid)
  {
    this.display = display;
    this.xid = xid;
  }

  public final int getXID()
  {
    return xid;
  }

  public final Display getDisplay()
  {
    return display;
  }

  protected Display display;
  protected int xid;

  private Object clientData;
  public final Object getClientData()
  {
    return clientData;
  }
  public final void setClientData(Object clientData)
  {
    this.clientData = clientData;
  }

  protected String params()
  {
    return "display=" + display + ",xid=" + Integer.toHexString(xid);
  }
  
  public String toString()
  {
    return getClass().getName() +
      "[" + params() + "]";
  }
}