01: /**********************************************************************************
02: * $URL:https://source.sakaiproject.org/svn/osp/trunk/matrix/tool/src/java/org/theospi/portfolio/matrix/control/CellFormBean.java $
03: * $Id:CellFormBean.java 9134 2006-05-08 20:28:42Z chmaurer@iupui.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2005, 2006 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the "License");
09: * you may not use this file except in compliance with the License.
10: * You may obtain a copy of the License at
11: *
12: * http://www.opensource.org/licenses/ecl1.php
13: *
14: * Unless required by applicable law or agreed to in writing, software
15: * distributed under the License is distributed on an "AS IS" BASIS,
16: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: * See the License for the specific language governing permissions and
18: * limitations under the License.
19: *
20: **********************************************************************************/package org.theospi.portfolio.matrix.control;
21:
22: import java.util.List;
23:
24: import org.theospi.portfolio.matrix.model.Cell;
25:
26: /**
27: * @author chmaurer
28: */
29: public class CellFormBean {
30:
31: private Cell cell;
32: private List nodes;
33: private String[] selectedArtifacts;
34:
35: /**
36: * @return
37: */
38: public List getNodes() {
39: return nodes;
40: }
41:
42: /**
43: * @return
44: */
45: public Cell getCell() {
46: return cell;
47: }
48:
49: /**
50: * @param list
51: */
52: public void setNodes(List list) {
53: nodes = list;
54: }
55:
56: /**
57: * @param cell
58: */
59: public void setCell(Cell cell) {
60: this .cell = cell;
61: }
62:
63: /**
64: * @return Returns the selectedArtifacts.
65: */
66: public String[] getSelectedArtifacts() {
67: return selectedArtifacts;
68: }
69:
70: /**
71: * @param selectedArtifacts The selectedArtifacts to set.
72: */
73: public void setSelectedArtifacts(String[] selectedArtifacts) {
74: this.selectedArtifacts = selectedArtifacts;
75: }
76: }
|