StoreTreeNode.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:4k
源码类别:

Java编程

开发平台:

Java

  1. /*
  2.  * @(#)StoreTreeNode.java 1.9 01/05/23
  3.  *
  4.  * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in the
  15.  *   documentation and/or other materials provided with the distribution.
  16.  * 
  17.  * Neither the name of Sun Microsystems, Inc. or the names of contributors
  18.  * may be used to endorse or promote products derived from this software
  19.  * without specific prior written permission.
  20.  * 
  21.  * This software is provided "AS IS," without a warranty of any kind. ALL
  22.  * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
  23.  * INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
  24.  * PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND
  25.  * ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES OR LIABILITIES
  26.  * SUFFERED BY LICENSEE AS A RESULT OF  OR RELATING TO USE, MODIFICATION
  27.  * OR DISTRIBUTION OF THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL
  28.  * SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  29.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE
  30.  * DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,
  31.  * ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS
  32.  * BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  33.  * 
  34.  * You acknowledge that Software is not designed, licensed or intended
  35.  * for use in the design, construction, operation or maintenance of any
  36.  * nuclear facility.
  37.  */
  38. import javax.swing.tree.DefaultMutableTreeNode;
  39. import javax.mail.*;
  40. /**
  41.  * Node which represents a Store in the javax.mail apis. 
  42.  *
  43.  * @version 1.9, 01/05/23
  44.  * @author Christopher Cotton
  45.  */
  46. public class StoreTreeNode extends DefaultMutableTreeNode {
  47.     
  48.     protected Store store = null;
  49.     protected Folder folder = null;
  50.     protected String display = null;
  51.     /**
  52.      * creates a tree node that points to the particular Store.
  53.      *
  54.      * @param what the store for this node
  55.      */
  56.     public StoreTreeNode(Store what) {
  57. super(what);
  58. store = what;
  59.     }
  60.     
  61.     /**
  62.      * a Store is never a leaf node.  It can always contain stuff
  63.      */
  64.     public boolean isLeaf() {
  65. return false;
  66.     }
  67.    
  68.     /**
  69.      * return the number of children for this store node. The first
  70.      * time this method is called we load up all of the folders
  71.      * under the store's defaultFolder
  72.      */
  73.     public int getChildCount() {
  74. if (folder == null) {
  75.     loadChildren();
  76. }
  77. return super.getChildCount();
  78.     }
  79.     
  80.     protected void loadChildren() {
  81. try {
  82.     // connect to the Store if we need to
  83.     if (!store.isConnected()) {
  84. store.connect();
  85.     }
  86.     // get the default folder, and list the
  87.     // subscribed folders on it
  88.     folder = store.getDefaultFolder();
  89.     // Folder[] sub = folder.listSubscribed();
  90.     Folder[] sub = folder.list();
  91.     // add a FolderTreeNode for each Folder
  92.     int num = sub.length;
  93.     for(int i = 0; i < num; i++) {
  94. FolderTreeNode node = new FolderTreeNode(sub[i]);
  95. // we used insert here, since add() would make
  96. // another recursive call to getChildCount();
  97. insert(node, i);
  98.     }
  99.     
  100. } catch (MessagingException me) {
  101.     me.printStackTrace();
  102. }
  103.     }
  104.     /**
  105.      * We override toString() so we can display the store URLName
  106.      * without the password.
  107.      */
  108.     public String toString() {
  109. if (display == null) {
  110.     URLName url = store.getURLName();
  111.     if (url == null) {
  112. display = store.toString();
  113.     } else {
  114. // don't show the password
  115. URLName too = new URLName( url.getProtocol(), url.getHost(), url.getPort(),
  116.    url.getFile(), url.getUsername(), null);
  117. display = too.toString();
  118.     }
  119. }
  120. return display;
  121.     }
  122.     
  123.     
  124. }