mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-05 02:39:23 +02:00
external plugins do not support files inside archives
This commit is contained in:
parent
61e1588a97
commit
a231bcd446
2 changed files with 15 additions and 6 deletions
|
@ -50,12 +50,18 @@ public abstract class FormatPlugin {
|
|||
public abstract String readAnnotation(ZLFile file);
|
||||
|
||||
public enum Type {
|
||||
ANY,
|
||||
JAVA,
|
||||
NATIVE,
|
||||
PLUGIN,
|
||||
EXTERNAL,
|
||||
NONE
|
||||
ANY(false),
|
||||
JAVA(true),
|
||||
NATIVE(true),
|
||||
PLUGIN(false),
|
||||
EXTERNAL(false),
|
||||
NONE(false);
|
||||
|
||||
public final boolean Builtin;
|
||||
|
||||
Type(boolean builtin) {
|
||||
Builtin = builtin;
|
||||
}
|
||||
};
|
||||
public abstract Type type();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue