/* * @(#)SubtreeFileChooserUI.java 1.0 2010-08-20 * * Copyright (c) 2010 Werner Randelshofer, Immensee, Switzerland. * All rights reserved. * * You may not use, copy or modify this file, except in compliance with the * license agreement you entered into with Werner Randelshofer. * For details see accompanying license terms. */ package ch.randelshofer.quaqua.filechooser; import java.io.File; /** * SubtreeFileChooserUI for filechoosers which can change their filesystem root. * * @author Werner Randelshofer * @version 1.0 2010-08-20 Created. */ public interface SubtreeFileChooserUI { /** Sets the root directory of the subtree. */ public void setRootDirectory(File file) ; }