001package gwt.material.design.jscore.client.api.file; 002 003import gwt.material.design.jscore.client.api.JsObject; 004import jsinterop.annotations.JsPackage; 005import jsinterop.annotations.JsProperty; 006import jsinterop.annotations.JsType; 007 008@JsType(isNative = true, namespace = JsPackage.GLOBAL) 009public class FileSystem extends JsObject { 010 011 @JsProperty(name = "root") 012 public native DirectoryEntry getRoot(); 013 014 @JsProperty(name = "name") 015 public native String getName(); 016 017 public native String toJSON(); 018 019 public native String encodeURIPath(); 020 021}