Package | Description |
---|---|
viptool.base.io | |
viptool.util |
Modifier and Type | Method and Description |
---|---|
IFileInterpreter |
IFileInterpreterProvider.createFromFile(IAbstractFile file)
Creates a abstract file based on the given folder and file.
|
IFileInterpreter |
IFileInterpreterProvider.createNewFile(IAbstractFile file)
Should create a new file that matches the file type.
|
boolean |
IFileInterpreterProvider.matchFormat(IAbstractFile file)
Tests whether the content of the file matches the file type of the
provider.
|
Modifier and Type | Method and Description |
---|---|
IFileInterpreter |
ClassFileInterpreter.createFromFile(IAbstractFile file) |
IFileInterpreter |
ClassFileInterpreter.createNewFile(IAbstractFile file) |
boolean |
ClassFileInterpreter.matchFormat(IAbstractFile file)
This method returns true if:
- the file is a valid class file and testForSuperClass is set to false (default)
- the file is a valid class file and testForSuperClass is set to true and the Class
extends the given Superclass.
|