Package org.freedesktop.dbus.viewer
Class DBusEntry
- java.lang.Object
-
- org.freedesktop.dbus.viewer.DBusEntry
-
public class DBusEntry extends java.lang.ObjectA summary class for a dbus entry for use in a table model- Since:
- 10/02/2006
-
-
Field Summary
Fields Modifier and Type Field Description private Introspectableintrospectableprivate java.lang.Stringnameprivate java.lang.Stringownerprivate java.lang.Stringpathprivate UInt32user
-
Constructor Summary
Constructors Constructor Description DBusEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntrospectablegetIntrospectable()Retrieve the introspectablejava.lang.StringgetName()Retrieve the namejava.lang.StringgetOwner()Retrieve the ownerjava.lang.StringgetPath()retrieve the path parameterUInt32getUser()Retrieve the uservoidsetIntrospectable(Introspectable _introspectable)Assign the introspectablevoidsetName(java.lang.String _name)Assign the namevoidsetOwner(java.lang.String _owner)Assign the ownervoidsetPath(java.lang.String _path)set the path parametervoidsetUser(UInt32 _user)Assign the user
-
-
-
Field Detail
-
name
private java.lang.String name
-
path
private java.lang.String path
-
user
private UInt32 user
-
owner
private java.lang.String owner
-
introspectable
private Introspectable introspectable
-
-
Method Detail
-
setName
public void setName(java.lang.String _name)
Assign the name- Parameters:
_name- The name.
-
getName
public java.lang.String getName()
Retrieve the name- Returns:
- The name.
-
setUser
public void setUser(UInt32 _user)
Assign the user- Parameters:
_user- The user.
-
getUser
public UInt32 getUser()
Retrieve the user- Returns:
- The user.
-
setOwner
public void setOwner(java.lang.String _owner)
Assign the owner- Parameters:
_owner- The owner.
-
getOwner
public java.lang.String getOwner()
Retrieve the owner- Returns:
- The owner.
-
setIntrospectable
public void setIntrospectable(Introspectable _introspectable)
Assign the introspectable- Parameters:
_introspectable- The introspectable.
-
getIntrospectable
public Introspectable getIntrospectable()
Retrieve the introspectable- Returns:
- The introspectable.
-
getPath
public java.lang.String getPath()
retrieve the path parameter- Returns:
- path
-
setPath
public void setPath(java.lang.String _path)
set the path parameter- Parameters:
_path- path
-
-