All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webswing.toolkit.extra.IsolatedRootFile Maven / Gradle / Ivy

There is a newer version: 20.2.4
Show newest version
package org.webswing.toolkit.extra;

import java.io.File;


public class IsolatedRootFile extends File {

    public IsolatedRootFile(String pathname) {
        super(pathname);
    }

    private static final long serialVersionUID = -2583310076262643707L;

    
    @Override
    public String getParent() {
        return null;
    }
    
    @Override
    public File getParentFile() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy