1 /*
2 WSMO Studio - a Semantic Web Service Editor
3 Copyright (c) 2004-2006, OntoText Lab. / SIRMA Group
4
5 This library is free software; you can redistribute it and/or modify it under
6 the terms of the GNU Lesser General Public License as published by the Free
7 Software Foundation; either version 2.1 of the License, or (at your option)
8 any later version.
9 This library is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12 details.
13 You should have received a copy of the GNU Lesser General Public License along
14 with this library; if not, write to the Free Software Foundation, Inc.,
15 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 */
17
18 /***
19 * <p>Title: WSMO Studio</p>
20 * <p>Description: Semantic Web Service Editor</p>
21 * <p>Copyright: Copyright (c) 2004-2006</p>
22 * <p>Company: OntoText Lab. / SIRMA </p>
23 */
24
25 package org.wsmostudio.ui.editors.model;
26
27 import org.omwg.ontology.*;
28 import org.wsmo.common.Identifier;
29 import org.wsmo.common.exception.InvalidModelException;
30
31 public class InstanceModel extends EntityModel {
32
33 public InstanceModel(Instance delegate) {
34 super(delegate);
35 }
36
37 public Instance getInstance() {
38 return (Instance)getAdapter(Instance.class);
39 }
40
41 public void addAttributeValue(Identifier attr, Value val)
42 throws InvalidModelException {
43 getInstance().addAttributeValue(attr, val);
44 setChanged();
45 }
46
47 public void addConcept(Concept superConcept)
48 throws InvalidModelException {
49 getInstance().addConcept(superConcept);
50 setChanged();
51 }
52
53 public void removeAttributeValue(Identifier attr, Value val)
54 throws InvalidModelException {
55 getInstance().removeAttributeValue(attr, val);
56 setChanged();
57 }
58
59 public void removeAttributeValues(Identifier attr)
60 throws InvalidModelException {
61 getInstance().removeAttributeValues(attr);
62 setChanged();
63 }
64
65 public void removeConcept(Concept superConcept)
66 throws InvalidModelException {
67 getInstance().removeConcept(superConcept);
68 setChanged();
69 }
70
71 }
72
73 /*
74 * $Log: InstanceModel.java,v $
75 * Revision 1.4 2006/02/20 12:47:51 alex_simov
76 * wsmo4j api change: attributes handled by IRI instead of object refs
77 *
78 * Revision 1.3 2006/01/09 12:51:14 alex_simov
79 * Copyright message in header updated
80 *
81 * Revision 1.2 2005/11/09 16:16:08 alex_simov
82 * UIModels notification improved
83 *
84 * Revision 1.1 2005/11/04 15:54:00 alex_simov
85 * wsmo4j entity UI models created
86 *
87 *
88 */