01: package org.concern.model;
02:
03: public class Loader extends Element implements Implementable {
04: String implementation = "";
05:
06: public Loader() {
07: super (null);
08: }
09:
10: public Loader(String name) {
11: super (name);
12: }
13:
14: public Loader(String name, String implementation) {
15: super (name);
16: this .implementation = implementation;
17: }
18:
19: public String getImplementation() {
20: return implementation;
21: }
22:
23: public void setImplementation(String implementation) {
24: Object old = this .implementation;
25: this .implementation = implementation;
26: changes.firePropertyChange("implementation", old,
27: implementation);
28: }
29: }
|