01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/osp/tags/sakai_2-4-1/presentation/api/src/java/org/theospi/portfolio/presentation/model/PresentationItemProperty.java $
03: * $Id: PresentationItemProperty.java 10835 2006-06-17 03:25:03Z lance@indiana.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.presentation.model;
21:
22: import org.sakaiproject.metaobj.shared.model.Id;
23:
24: public class PresentationItemProperty {
25:
26: public final static String RENDER_STYLE = "renderStyle";
27: public final static String ITEM_HEIGHT = "itemHeight";
28: public final static String ITEM_WIDTH = "itemWidth";
29: public final static String LINK_TARGET = "linkTarget";
30: public final static String CONTENT_TYPE = "contentType";
31:
32: private Id id;
33: private PresentationPageItem item;
34: private String key;
35: private String value;
36:
37: public String getKey() {
38: return key;
39: }
40:
41: public void setKey(String key) {
42: this .key = key;
43: }
44:
45: public String getValue() {
46: return value;
47: }
48:
49: public void setValue(String value) {
50: this .value = value;
51: }
52:
53: public PresentationPageItem getItem() {
54: return item;
55: }
56:
57: public void setItem(PresentationPageItem item) {
58: this .item = item;
59: }
60:
61: public Id getId() {
62: return id;
63: }
64:
65: public void setId(Id id) {
66: this.id = id;
67: }
68:
69: }
|