01: /*
02: * Jacareto Copyright (c) 2002-2005
03: * Applied Computer Science Research Group, Darmstadt University of
04: * Technology, Institute of Mathematics & Computer Science,
05: * Ludwigsburg University of Education, and Computer Based
06: * Learning Research Group, Aachen University. All rights reserved.
07: *
08: * Jacareto is free software; you can redistribute it and/or
09: * modify it under the terms of the GNU General Public
10: * License as published by the Free Software Foundation; either
11: * version 2 of the License, or (at your option) any later version.
12: *
13: * Jacareto is distributed in the hope that it will be useful,
14: * but WITHOUT ANY WARRANTY; without even the implied warranty of
15: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16: * General Public License for more details.
17: *
18: * You should have received a copy of the GNU General Public
19: * License along with Jacareto; if not, write to the Free
20: * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21: *
22: */
23:
24: package jacareto.interactionmodel;
25:
26: import jacareto.system.Environment;
27:
28: /**
29: * The interaction-model elment that represents a "basic interaction"
30: *
31: * @author <a href="mailto:markus.bois@web.de">Markus Bois</a>
32: * @version 1.0
33: */
34: public class BasicInteractionsElement extends InteractionModelElement {
35: /**
36: * Creates a new "basic interactions" interaction-model element.
37: *
38: * @param env the environment
39: */
40: public BasicInteractionsElement(Environment env) {
41: this (env, null);
42: }
43:
44: /**
45: * Creates a new "basic interactions" interaction-model element.
46: *
47: * @param env the environment
48: * @param children the child interaction-model elements
49: */
50: public BasicInteractionsElement(Environment env,
51: InteractionModelElement[] children) {
52: super (env, children);
53: }
54:
55: /**
56: * Returns the name of the element.
57: *
58: * @return the name
59: */
60: public String getElementName() {
61: return language
62: .getString("InteractionModel.BasicInteractions.Name");
63: }
64:
65: /**
66: * Returns a description of the element.
67: *
68: * @return the description
69: */
70: public String getElementDescription() {
71: return language
72: .getString("InteractionModel.BasicInteractions.Description");
73: }
74:
75: /**
76: * Returns a String which describes the content of the element shortly.
77: *
78: * @return a string with a short description of the element
79: */
80: public String toShortString() {
81: return getElementName();
82: }
83: }
|