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