windowsfilesystemview.java.svn-base

来自「开源项目openfire的完整源程序」· SVN-BASE 代码 · 共 116 行

SVN-BASE
116
字号
/**
 * $Revision: $
 * $Date: $
 *
 * Copyright (C) 2006 Jive Software. All rights reserved.
 *
 * This software is published under the terms of the GNU Lesser Public License (LGPL),
 * a copy of which is included in this distribution.
 */

package org.jivesoftware.spark.util;

/********************************************************************
 * Copyright (c) Open Java Extensions, Andrew Selkirk  LGPL License *
 ********************************************************************/

// Imports

import javax.swing.filechooser.FileSystemView;

import java.io.File;
import java.io.IOException;
import java.lang.reflect.Method;

/**
 * WindowsFileSystemView
 *
 * @author Andrew Selkirk
 * @version 1.0
 */
public class WindowsFileSystemView extends FileSystemView {

    //-------------------------------------------------------------
    // Variables --------------------------------------------------
    //-------------------------------------------------------------

    /**
     * noArgs
     */
    private static final Object[] noArgs = null; // TODO

    /**
     * noArgTypes
     */
    private static final Class[] noArgTypes = null; // TODO

    /**
     * listRootsMethod
     */
    private static Method listRootsMethod = null; // TODO

    /**
     * listRootsMethodChecked
     */
    private static boolean listRootsMethodChecked = false; // TODO

    //-------------------------------------------------------------
    // Initialization ---------------------------------------------
    //-------------------------------------------------------------

    /**
     * Constructor WindowsFileSystemView
     */
    public WindowsFileSystemView() {
        // TODO
    } // WindowsFileSystemView()

    //-------------------------------------------------------------
    // Methods ----------------------------------------------------
    //-------------------------------------------------------------

    /**
     * isRoot
     *
     * @param value0 TODO
     * @returns boolean
     */
    public boolean isRoot(File value0) {
        return false; // TODO
    } // isRoot()

    /**
     * createNewFolder
     *
     * @param value0 TODO
     * @throws IOException TODO
     * @returns File
     */
    public File createNewFolder(File value0) throws IOException {
        return null; // TODO
    } // createNewFolder()

    /**
     * isHiddenFile
     *
     * @param value0 TODO
     * @returns boolean
     */
    public boolean isHiddenFile(File value0) {
        return false; // TODO
    } // isHiddenFile()

    /**
     * getRoots
     *
     * @returns File[]
     */
    public File[] getRoots() {
        return null; // TODO
    } // getRoots()


} // WindowsFileSystemView


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?