Package jadx.api.plugins.resources
Interface IResTableParserProvider
-
- All Known Implementing Classes:
ResTableBinaryParserProvider
public interface IResTableParserProviderProvides the resource table parser instance for specific resource table file format. Can be used in plugins viacontext.getResourcesLoader().addResTableParserProvider()to parse resources from tables in different formats.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @Nullable IResTableParsergetParser(ResourceFile resFile)Checks a file format and provides the instance if the format is expected.default voidinit(RootNode root)Optional init method
-
-
-
Method Detail
-
init
default void init(RootNode root)
Optional init method
-
getParser
@Nullable @Nullable IResTableParser getParser(ResourceFile resFile)
Checks a file format and provides the instance if the format is expected.- Returns:
IResTableParserif resource table is of expected format,nullotherwise.
-
-