KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > wings > tree > STreeSelectionModel


1 /*
2  * $Id: STreeSelectionModel.java,v 1.4 2005/04/08 17:41:34 blueshift Exp $
3  * Copyright 2000,2005 wingS development team.
4  *
5  * This file is part of wingS (http://www.j-wings.org).
6  *
7  * wingS is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU Lesser General Public License
9  * as published by the Free Software Foundation; either version 2.1
10  * of the License, or (at your option) any later version.
11  *
12  * Please see COPYING for the complete licence.
13  */

14 package org.wings.tree;
15
16 import org.wings.SDelayedEventModel;
17 import org.wings.SListSelectionModel;
18
19 import javax.swing.tree.TreeSelectionModel JavaDoc;
20
21 /**
22  * @author <a HREF="mailto:haaf@mercatis.de">Armin Haaf</a>
23  * @version $Revision: 1.4 $
24  */

25 public interface STreeSelectionModel extends TreeSelectionModel JavaDoc, SDelayedEventModel {
26     /**
27      * Tree selection model. See {@link STreeSelectionModel#setSelectionMode(int)}
28      */

29     public static final int SINGLE_SELECTION = SListSelectionModel.SINGLE_SELECTION;
30     /**
31      * Tree selection model. See {@link STreeSelectionModel#setSelectionMode(int)}
32      */

33     public static final int SINGLE_INTERVAL_SELECTION = SListSelectionModel.SINGLE_INTERVAL_SELECTION;
34     /**
35      * Tree selection model. See {@link STreeSelectionModel#setSelectionMode(int)}
36      */

37     public static final int MULTIPLE_INTERVAL_SELECTION = SListSelectionModel.MULTIPLE_INTERVAL_SELECTION;
38 }
39
40
41
Popular Tags