Example usage for java.io File subclass-usage

List of usage examples for java.io File subclass-usage

Introduction

In this page you can find the example usage for java.io File subclass-usage.

Usage

From source file com.github.jengelman.gradle.plugins.integration.TestFile.java

public class TestFile extends File {
    private boolean useNativeTools;

    public TestFile(File file, Object... path) {
        super(join(file, path).getAbsolutePath());
    }

From source file org.gradle.test.fixtures.file.TestFile.java

public class TestFile extends File {
    private boolean useNativeTools;

    public TestFile(File file, Object... path) {
        super(join(file, path).getAbsolutePath());
    }

From source file org.jboss.gradle.plugins.jdocbook.test.util.TestFile.java

public class TestFile extends File implements TestFileContext {
    private boolean useNativeTools;

    public TestFile(File file, Object... path) {
        super(join(file, path).getAbsolutePath());
    }

From source file org.fhaes.fhfilereader.FHFile.java

/**
 * FHFile Class. Simple extension of java.io.File which includes functions for checking whether this is a valid FHX format file, and if not,
 * to access the error reporting features of the DendroFileIO library.
 * 
 * @author Peter Brewer
 */