Revision 05cf9e5b src/gr/grnet/pithos/web/client/foldertree/Folder.java

b/src/gr/grnet/pithos/web/client/foldertree/Folder.java
78 78

  
79 79
    private boolean inTrash = false;
80 80

  
81
    /*
82
     * Flag that indicates that this folder is the Trash
83
     */
84
    private boolean trash = false;
85

  
81 86
    public Folder() {};
82 87

  
83 88
    public Folder(String name) {
......
237 242
    public boolean isContainer() {
238 243
        return parent == null;
239 244
    }
245

  
246
    public boolean isTrash() {
247
        return trash;
248
    }
249

  
250
    public void setTrash(boolean trash) {
251
        this.trash = trash;
252
    }
253

  
254
    public void setContainer(String container) {
255
        this.container = container;
256
    }
240 257
}

Also available in: Unified diff