Package org.jf.dexlib2.writer.pool
Class DexPool.DexPoolSectionProvider
- java.lang.Object
-
- org.jf.dexlib2.writer.DexWriter.SectionProvider
-
- org.jf.dexlib2.writer.pool.DexPool.DexPoolSectionProvider
-
- Enclosing class:
- DexPool
protected class DexPool.DexPoolSectionProvider extends DexWriter.SectionProvider
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
DexPoolSectionProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AnnotationPool
getAnnotationSection()
AnnotationSetPool
getAnnotationSetSection()
CallSitePool
getCallSiteSection()
ClassPool
getClassSection()
EncodedArrayPool
getEncodedArraySection()
FieldPool
getFieldSection()
MethodHandlePool
getMethodHandleSection()
MethodPool
getMethodSection()
ProtoPool
getProtoSection()
StringPool
getStringSection()
TypeListPool
getTypeListSection()
TypePool
getTypeSection()
-
-
-
Method Detail
-
getStringSection
@Nonnull public StringPool getStringSection()
- Specified by:
getStringSection
in classDexWriter.SectionProvider
-
getTypeSection
@Nonnull public TypePool getTypeSection()
- Specified by:
getTypeSection
in classDexWriter.SectionProvider
-
getProtoSection
@Nonnull public ProtoPool getProtoSection()
- Specified by:
getProtoSection
in classDexWriter.SectionProvider
-
getFieldSection
@Nonnull public FieldPool getFieldSection()
- Specified by:
getFieldSection
in classDexWriter.SectionProvider
-
getMethodSection
@Nonnull public MethodPool getMethodSection()
- Specified by:
getMethodSection
in classDexWriter.SectionProvider
-
getClassSection
@Nonnull public ClassPool getClassSection()
- Specified by:
getClassSection
in classDexWriter.SectionProvider
-
getCallSiteSection
@Nonnull public CallSitePool getCallSiteSection()
- Specified by:
getCallSiteSection
in classDexWriter.SectionProvider
-
getMethodHandleSection
@Nonnull public MethodHandlePool getMethodHandleSection()
- Specified by:
getMethodHandleSection
in classDexWriter.SectionProvider
-
getTypeListSection
@Nonnull public TypeListPool getTypeListSection()
- Specified by:
getTypeListSection
in classDexWriter.SectionProvider
-
getAnnotationSection
@Nonnull public AnnotationPool getAnnotationSection()
- Specified by:
getAnnotationSection
in classDexWriter.SectionProvider
-
getAnnotationSetSection
@Nonnull public AnnotationSetPool getAnnotationSetSection()
- Specified by:
getAnnotationSetSection
in classDexWriter.SectionProvider
-
getEncodedArraySection
@Nonnull public EncodedArrayPool getEncodedArraySection()
- Specified by:
getEncodedArraySection
in classDexWriter.SectionProvider
-
-