Package jadx.api.plugins.resources
Interface IResTableParserProvider
- All Known Implementing Classes:
ResTableBinaryParserProvider
public interface IResTableParserProvider
Provides the resource table parser instance for specific resource table file format. Can be used
in plugins via
context.getResourcesLoader().addResTableParserProvider() to parse
resources from tables
in different formats.-
Method Summary
Modifier and TypeMethodDescription@Nullable IResTableParsergetParser(ResourceFile resFile) Checks a file format and provides the instance if the format is expected.default voidOptional init method
-
Method Details
-
init
Optional init method -
getParser
Checks a file format and provides the instance if the format is expected.- Returns:
IResTableParserif resource table is of expected format,nullotherwise.
-