All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.freedesktop.dbus.viewer.DBusEntry Maven / Gradle / Ivy

The newest version!
/*
   D-Bus Java Viewer
   Copyright (c) 2006 Peter Cox

   This program is free software; you can redistribute it and/or modify it
   under the terms of either the GNU Lesser General Public License Version 2 or the
   Academic Free Licence Version 2.1.

   Full licence texts are included in the COPYING file with this program.
*/
package org.freedesktop.dbus.viewer;

import org.freedesktop.DBus.Introspectable;
import org.freedesktop.dbus.UInt32;

/** A summary class for a dbus entry for use in a table model
 *
 * @author pete
 * @since 10/02/2006
 */
public class DBusEntry
{
	private String name;
	
	private String path;

	private UInt32 user;

	private String owner;

	private Introspectable introspectable;

	/** Assign the name
	 * 
	 * @param name The name.
	 */
	public void setName(String name)
	{
		this.name = name;
	}

	/** Retrieve the name
	 * 
	 * @return The name.
	 */
	public String getName()
	{
		return name;
	}

	/** Assign the user
	 * 
	 * @param user The user.
	 */
	public void setUser(UInt32 user)
	{
		this.user = user;
	}

	/** Retrieve the user
	 * 
	 * @return The user.
	 */
	public UInt32 getUser()
	{
		return user;
	}

	/** Assign the owner
	 * 
	 * @param owner The owner.
	 */
	public void setOwner(String owner)
	{
		this.owner = owner;
	}

	/** Retrieve the owner
	 * 
	 * @return The owner.
	 */
	public String getOwner()
	{
		return owner;
	}

	/** Assign the introspectable
	 * 
	 * @param introspectable The introspectable.
	 */
	public void setIntrospectable(Introspectable introspectable)
	{
		this.introspectable = introspectable;
	}

	/** Retrieve the introspectable
	 * 
	 * @return The introspectable.
	 */
	public Introspectable getIntrospectable()
	{
		return introspectable;
	}
	
	/**
	 * retrieve the path parameter
	 * 
	 * @return
	 */
	public String getPath() {
		return path;
	}
	
	/**
	 * set the path parameter
	 * 
	 * @param path
	 */
	public void setPath(String path) {
		this.path = path;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy