1 /** 2 * コンストラクタは使用できません。 3 * @class FileSystemインターフェイスです。{@link LocalFileSystem#requestFileSystem}を通して生成されます。 4 * @see <a href="http://www.w3.org/TR/file-system-api/#the-filesystem-interface" taget="_blank">FileSystem</a>インターフェイス(W3C) 5 */ 6 function FileSystem() 7 { 8 /** 9 * 読み取り専用。ファイルシステムの名称です。 10 * @type DOMString 11 */ 12 this.name = null; 13 14 /** 15 * 読み取り専用。ストレージのルートディレクトリを示すDirectoryEntryオブジェクトです。 16 * @type DirectoryEntry 17 * @see <a href="http://www.w3.org/TR/file-system-api/#the-directoryentry-interface">DirectoryEntry</a>インターフェイス(W3C) 18 */ 19 this.root = null; 20 } 21