You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
367 B
31 lines
367 B
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;
|
|
}
|
|
|
|
}
|