01: package org.enhydra.jawe.components.graph.actions;
02:
03: import java.awt.event.ActionEvent;
04:
05: import org.enhydra.jawe.JaWEComponent;
06: import org.enhydra.jawe.components.graph.GraphEAConstants;
07:
08: /**
09: * @author Sasa Bojanic
10: */
11: public class SetTransitionStyleSimpleRoutingBezier extends
12: SetTransitionStyle {
13:
14: public SetTransitionStyleSimpleRoutingBezier(
15: JaWEComponent jawecomponent) {
16: super (
17: jawecomponent,
18: GraphEAConstants.EA_JAWE_GRAPH_TRANSITION_STYLE_VALUE_SIMPLE_ROUTING_BEZIER);
19: }
20:
21: public void actionPerformed(ActionEvent e) {
22: super.actionPerformed(e);
23: }
24: }
|