01: /*
02: ItsNat Java Web Application Framework
03: Copyright (C) 2007 Innowhere Software Services S.L., Spanish Company
04: Author: Jose Maria Arranz Santamaria
05:
06: This program is free software: you can redistribute it and/or modify
07: it under the terms of the GNU Affero General Public License as published by
08: the Free Software Foundation, either version 3 of the License, or
09: (at your option) any later version. See the GNU Affero General Public
10: License for more details. See the copy of the GNU Affero General Public License
11: included in this program. If not, see <http://www.gnu.org/licenses/>.
12: */
13:
14: package org.itsnat.impl.core.domutil;
15:
16: import org.itsnat.core.ItsNatException;
17:
18: /**
19: *
20: * @author jmarranz
21: */
22: public class TableCellElementInfoSlaveImpl extends
23: TableCellElementInfoImpl {
24: /**
25: * Creates a new instance of TableCellElementInfoImpl
26: */
27: public TableCellElementInfoSlaveImpl(
28: ListElementInfoSlaveImpl rowInfo,
29: ListElementInfoSlaveImpl cellInfo,
30: ElementTableBaseImpl table) {
31: super (rowInfo, cellInfo, table);
32: }
33:
34: public boolean containsUserValueName(String name) {
35: throw new ItsNatException(
36: "As this object must not be saved, user data would be lost");
37: }
38:
39: public Object getUserValue(String name) {
40: throw new ItsNatException(
41: "As this object must not be saved, user data would be lost");
42: }
43:
44: public Object setUserValue(String name, Object value) {
45: throw new ItsNatException(
46: "As this object must not be saved, user data would be lost");
47: }
48:
49: public Object removeUserValue(String name) {
50: throw new ItsNatException(
51: "As this object must not be saved, user data would be lost");
52: }
53:
54: public String[] getUserValueNames() {
55: throw new ItsNatException(
56: "As this object must not be saved, user data would be lost");
57: }
58: }
|