source: other-projects/FileTransfer-WebSocketPair/testGXTWithGreenstone/src/com/gs3/testGXT/client/Keys/RootFileSystemKey.java@ 33053

Last change on this file since 33053 was 33053, checked in by ak19, 5 years ago

I still had some stuff of Nathan Kelly's (FileTransfer-WebSocketPair) sitting on my USB. Had already commited the Themes folder at the time, 2 years back. Not sure if he wanted this additional folder commited. But I didn't want to delete it and decided it will be better off on SVN. When we use his project, if we find we didn't need this test folder, we can remove it from svn then.

File size: 337 bytes
Line 
1package com.gs3.testGXT.client.Keys;
2
3public class RootFileSystemKey extends FileSystemKey {
4 String path = "/";
5
6 public RootFileSystemKey() {
7 super("", "root", true, false);
8 this.droppable = false;
9 }
10
11 @Override public String toString() {
12 return "Local Filespace";
13 }
14
15 @Override public String toPath() {
16 return path;
17 }
18}
Note: See TracBrowser for help on using the repository browser.