1 24 package org.riotfamily.riot.editor.ui; 25 26 import java.util.LinkedList ; 27 import java.util.List ; 28 29 33 public class EditorGroup { 34 35 private String id; 36 37 private String title; 38 39 private List editors = new LinkedList (); 40 41 42 public String getId() { 43 return this.id; 44 } 45 46 public void setId(String id) { 47 this.id = id; 48 } 49 50 public String getTitle() { 51 return title; 52 } 53 54 public void setTitle(String title) { 55 this.title = title; 56 } 57 58 public void addReference(EditorReference reference) { 59 editors.add(reference); 60 } 61 62 public List getEditors() { 63 return editors; 64 } 65 } 66 | Popular Tags |