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.algorithms.RadialLayoutAlgorithm;
10
11 /**
12 * Action for {@link RadialLayoutAlgorithm} layout algorithm.
13 *
14 * @author Paweł Koperek <pkoperek@gmail.com>
15 * @author Mateusz Kupisz <mkupisz@gmail.com>
16 *
17 */
18 public class RadialLayoutAlgorithmAction extends AbstractLayoutAlgorithmAction {
19
20 /**
21 * Default constructor. Passes an instance of {@link RadialLayoutAlgorithm} to constructor of
22 * {@link AbstractLayoutAlgorithmAction}
23 */
24 public RadialLayoutAlgorithmAction() {
25 super(new RadialLayoutAlgorithm());
26 }
27
28 }