View Javadoc
1   package org.kuali.ole.docstore.model.repopojo;
2   
3   
4   import java.util.List;
5   
6   /**
7    * Class for representing folder nodes in docstore
8    * User: Pranitha
9    * Date: 2/28/12
10   * Time: 1:25 PM
11   * To change this template use File | Settings | File Templates.
12   */
13  public class FolderNode
14          extends DocStoreNode {
15  
16      private List<DocStoreNode> children;
17  
18      public List<DocStoreNode> getChildren() {
19          return children;
20      }
21  
22      public void setChildren(List<DocStoreNode> children) {
23          this.children = children;
24      }
25  }