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