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