View Javadoc
1   /*
2    * Copyright 2010 The Regents of the University of California.
3    */
4   package org.kuali.ole.sys.web.dddumper;
5   
6   import java.util.ArrayList;
7   import java.util.List;
8   
9   import org.kuali.rice.kns.web.struts.form.KualiForm;
10  
11  public class DataDictionaryDumperDetailForm extends KualiForm {
12  	
13  	private List<DataDictionaryDumperSection> sections = new ArrayList<DataDictionaryDumperSection>();
14  	protected String title;
15  
16  	public List<DataDictionaryDumperSection> getSections() {
17  		return sections;
18  	}
19  
20  	public void setSections(List<DataDictionaryDumperSection> sections) {
21  		this.sections = sections;
22  	}
23  
24      public String getTitle() {
25          return title;
26      }
27  
28      public void setTitle(String title) {
29          this.title = title;
30      }
31  }