summaryrefslogtreecommitdiffstats
path: root/dcopjava/binding/org/trinitydesktop/DCOP/DCOPRef.java
blob: 65e5e039941309ab62ffd8dc32b456505545f168 (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
package org.trinitydesktop.DCOP;


public class DCOPRef
{
    private String _app, _obj, _type;

    public DCOPRef(String app, String obj, String type)
    {
	_app = app;
	_obj = obj;
	_type = type;
    }

    public String app()
    {
	return _app;
    }

    public String object()
    {
	return _obj;
    }

    public String type()
    {
	return _type;
    }

}