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