Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

DeveloperResource Class After Editing


package samples.model;

import org.eclipse.rse.core.subsystems.AbstractResource;
import org.eclipse.rse.core.subsystems.ISubSystem;

/**
 * This models a remote resource representing a developer defined on a particular system.
 */
public class DeveloperResource extends AbstractResource {

	private String name;
	private String id;
	private String deptNbr;	

	/**
	 * Default constructor for DeveloperResource.
	 */
	public DeveloperResource()
	{
		super();
	}
	
	/**
	 * Constructor for DeveloperResource when given parent subsystem.
	 */
	public DeveloperResource(ISubSystem parentSubSystem)
	{
		super(parentSubSystem);
	}

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

	/**
	 * Sets the name.
	 * @param name The name to set
	 */
	public void setName(String name)
	{
		this.name = name;
	}
	
	/**
	 * Returns the id.
	 * @return String
	 */
	public String getId()
	{
		return id;
	}

	/**
	 * Sets the id.
	 * @param id The id to set
	 */
	public void setId(String id)
	{
		this.id = id;
	}

	/**
	 * Returns the deptNbr.
	 * @return String
	 */
	public String getDeptNbr()
	{
		return deptNbr;
	}

	/**
	 * Sets the deptNbr.
	 * @param deptNbr The deptNbr to set
	 */
	public void setDeptNbr(String deptNbr)
	{
		this.deptNbr = deptNbr;
	}

}


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire