01: /*
02: * $Id: AbstractEvent.java 881 2007-02-12 07:54:31Z hengels $
03: * (c) Copyright 2004 con:cern development team.
04: *
05: * This file is part of con:cern (http://concern.sf.net).
06: *
07: * con:cern is free software; you can redistribute it and/or modify
08: * it under the terms of the GNU Lesser General Public License
09: * as published by the Free Software Foundation; either version 2.1
10: * of the License, or (at your option) any later version.
11: *
12: * Please see COPYING for the complete licence.
13: */
14: package org.concern.controller;
15:
16: import org.concern.ControllerException;
17: import org.concern.Loader;
18: import org.concern.model.parser.ParseException;
19:
20: public abstract class AbstractEvent<S> extends AbstractNode implements
21: Event<S> {
22: protected AbstractEvent() {
23: }
24:
25: protected AbstractEvent(String name) {
26: environment.put("event.name", name);
27: }
28:
29: public final String getName() {
30: return (String) environment.get("event.name");
31: }
32:
33: public void setController(Controller controller) {
34: super .setController(controller);
35: }
36:
37: protected final Loader getLoader() {
38: return controller.getLoader();
39: }
40:
41: public final String getPostcondition() {
42: return (String) environment.get("event.postcondition");
43: }
44: }
|