Click here to Skip to main content
15,886,873 members
Articles / Programming Languages / UML

Building Tree Structure Domain Model

Rate me:
Please Sign up or sign in to vote.
3.00/5 (3 votes)
12 Dec 2008CPOL1 min read 34.8K   227   9  
How to build domain model with tree structure, thinking Object-Oriented
package org.schedulemanager.demo.model;

import java.util.ArrayList;
import java.util.List;

public class JobGroup extends Job {
	private List<Job> jobList;

	public JobGroup(String id, String name) {
		super(id);
		this.type = JOBGROUP;
		this.name = name;
		jobList = new ArrayList<Job>();
	}
	
	public JobGroup(String id, String name, String circle) {
		this(id, name);
		this.circle = circle;
	}
	
	public List<Job> getJobList() {
		return jobList;
	}
	public void addJob(Job job){
		if(job!=null && job.getId()!=null){
			jobList.add(job);
		}
	}
	public String getCircle() {
		return circle;
	}

	public void setCircle(String circle) {
		this.circle = circle;
	}
	public boolean removeJob(String id){
		boolean result = false;
		for(int i=0;i<jobList.size();i++){
			Job job = jobList.get(i);
			String jobId = job.getId();
			if(jobId.equals(id)){
				jobList.remove(i);
				result = true;
			}
		}
		return result;
	}
	
	public String toString() {
		return "id:" + id 
				+ ",name:" + name 
				+ ",circle:" + circle
				+ ",type:" + type ;
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Taiwan Taiwan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions