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:
12: public class MoveUpParticipant extends MoveParticipants {
13:
14: public MoveUpParticipant(JaWEComponent jawecomponent) {
15: super (jawecomponent, true);
16: }
17:
18: public void actionPerformed(ActionEvent e) {
19: super.actionPerformed(e);
20: }
21:
22: }
|