Package org.freedesktop.dbus.viewer
Class DBusEntry
- java.lang.Object
-
- org.freedesktop.dbus.viewer.DBusEntry
-
public class DBusEntry extends Object
A summary class for a dbus entry for use in a table model- Since:
- 10/02/2006
- Author:
- pete
-
-
Constructor Summary
Constructors Constructor Description DBusEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntrospectablegetIntrospectable()Retrieve the introspectableStringgetName()Retrieve the nameStringgetOwner()Retrieve the ownerStringgetPath()retrieve the path parameterUInt32getUser()Retrieve the uservoidsetIntrospectable(Introspectable _introspectable)Assign the introspectablevoidsetName(String _name)Assign the namevoidsetOwner(String _owner)Assign the ownervoidsetPath(String _path)set the path parametervoidsetUser(UInt32 _user)Assign the user
-
-
-
Method Detail
-
setName
public void setName(String _name)
Assign the name- Parameters:
_name- The name.
-
getName
public 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(String _owner)
Assign the owner- Parameters:
_owner- The owner.
-
getOwner
public 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 String getPath()
retrieve the path parameter- Returns:
- path
-
setPath
public void setPath(String _path)
set the path parameter- Parameters:
_path- path
-
-