01: package org.enhydra.jawe.components.graph.actions;
02:
03: import java.awt.event.ActionEvent;
04:
05: import org.enhydra.jawe.JaWEComponent;
06:
07: /*
08: * @author Harald Meister harald.meister@abacus.ch
09: * @author Sasa Bojanic
10: */
11: public class MoveDownParticipant extends MoveParticipants {
12:
13: public MoveDownParticipant(JaWEComponent jawecomponent) {
14: super (jawecomponent, false);
15: }
16:
17: public void actionPerformed(ActionEvent e) {
18: super.actionPerformed(e);
19: }
20:
21: }
|