1 /*
2 * This file is a part of CAST project.
3 * (c) Copyright 2007, AGH University of Science & Technology
4 * All rights reserved. Check the documentation for licensing terms.
5 * https://caribou.iisg.agh.edu.pl/trac/cast
6 */
7 package pl.edu.agh.cast.zestalgorithms.actions;
8
9 import org.eclipse.zest.layouts.LayoutStyles;
10 import org.eclipse.zest.layouts.algorithms.DirectedGraphLayoutAlgorithm;
11
12 /**
13 * Action for {@link DirectedGraphLayoutAlgorithm} layout algorithm.
14 *
15 * @author Paweł Koperek <pkoperek@gmail.com>
16 * @author Mateusz Kupisz <mkupisz@gmail.com>
17 *
18 */
19 public class DirectedGraphLayoutAlgorithmAction extends AbstractLayoutAlgorithmAction {
20
21 /**
22 * Default constructor. Passes an instance of {@link DirectedGraphLayoutAlgorithm} to constructor of
23 * {@link AbstractLayoutAlgorithmAction}
24 */
25 public DirectedGraphLayoutAlgorithmAction() {
26 super(new DirectedGraphLayoutAlgorithm(LayoutStyles.NONE));
27 }
28
29 }