Example usage for com.badlogic.gdx.files FileHandle subclass-usage

List of usage examples for com.badlogic.gdx.files FileHandle subclass-usage

Introduction

In this page you can find the example usage for com.badlogic.gdx.files FileHandle subclass-usage.

Usage

From source file com.badlogic.gdx.spriter.demo.SpriterDemoFileHandle.java

class SpriterDemoFileHandle extends FileHandle {

    final AssetManager manager;

    private String displayString;

From source file com.kotcrab.vis.editor.plugin.PluginFileHandle.java

/**
 * FileHandle used to access files from inside plugin jars. Please note that some functionality of FileHandle won't be available.
 * @author Kotcrab
 */
public class PluginFileHandle extends FileHandle {
    private Class baseClass;

From source file com.ridiculousRPG.util.InputStreamFileHandle.java

/**
 * @author Alexander Baumgartner
 */
public class InputStreamFileHandle extends FileHandle {
    private InputStream in;

From source file dk.gruppeseks.bodtrd.managers.JarFileHandleStream.java

/**
 *
 * @author Jan Corfixen (Project supervisor)
 */
public class JarFileHandleStream extends FileHandle {
    private JarFile jarFile = null;

From source file es.eucm.ead.editor.exporter.ExporterFileHandle.java

/**
 * A copy of libgdx's LwjglFileHandle. Thanks to its authors:
 * 
 * @author mzechner
 * @author Nathan Sweet
 */

From source file es.eucm.ead.engine.gdx.URLFileHandle.java

/**
 * A file handle for URLs
 */
public class URLFileHandle extends FileHandle {

    private String url;

From source file es.eucm.ead.engine.mock.MockFileHandle.java

public class MockFileHandle extends FileHandle {
    public MockFileHandle(String fileName, FileType type) {
        super(fileName, type);
    }

    public MockFileHandle(File file, FileType type) {

From source file managers.JarFileHandleStream.java

/**
 *
 * @author Jan Corfixen (Project supervisor)
 */
public class JarFileHandleStream extends FileHandle {
    private JarFile jarFile = null;

From source file net.pevnostgames.lwjglserver.ServerFileHandle.java

public class ServerFileHandle extends FileHandle {
    public ServerFileHandle(String fileName, Files.FileType type) {
        super(fileName, type);
    }

    public ServerFileHandle(File file, Files.FileType type) {

From source file org.teavm.libgdx.TeaVMFileHandle.java

/**
 *
 * @author Alexey Andreev
 */
public class TeaVMFileHandle extends FileHandle {
    public static final FSEntry root = new FSEntry();