类 KotlinModule
- java.lang.Object
-
- proguard.util.SimpleProcessable
-
- proguard.util.SimpleFeatureNamedProcessable
-
- proguard.resources.file.ResourceFile
-
- proguard.resources.kotlinmodule.KotlinModule
-
- 所有已实现的接口:
java.io.Serializable,FeatureNamed,Processable
public class KotlinModule extends ResourceFile implements Processable
Represents a Kotlin module file - this file describes the contents of a Kotlin module: which file facades and which multi-file part classes make up the module.The name of the module is the filename, excluding the extension (.kotlin_module).
- 另请参阅:
- 序列化表格
-
-
字段概要
字段 修饰符和类型 字段 说明 java.util.List<KotlinModulePackage>modulePackagesjava.lang.StringnameThe module name, as opposed to the fileName which includes the module name.KotlinMetadataVersionversion-
从类继承的字段 proguard.resources.file.ResourceFile
fileName, fileSize, references
-
从类继承的字段 proguard.util.SimpleFeatureNamedProcessable
extraFeatureNames, featureName
-
从类继承的字段 proguard.util.SimpleProcessable
processingFlags, processingInfo
-
-
构造器概要
构造器 构造器 说明 KotlinModule(java.lang.String fileName, long fileSize)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidaccept(ResourceFileVisitor resourceFileVisitor)voidaccept(KotlinModuleVisitor kotlinModuleVisitor)voidmodulePackagesAccept(KotlinModulePackageVisitor kotlinModulePackageVisitor)-
从类继承的方法 proguard.resources.file.ResourceFile
getFileName, getFileSize, toString
-
从类继承的方法 proguard.util.SimpleFeatureNamedProcessable
addExtraFeatureName, getExtraFeatureNames, getFeatureName, isInFeature, setFeatureName
-
从类继承的方法 proguard.util.SimpleProcessable
addProcessingFlags, getProcessingFlags, getProcessingInfo, hasProcessingFlags, removeProcessingFlags, setProcessingFlags, setProcessingInfo
-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
从接口继承的方法 proguard.util.Processable
accept, addProcessingFlags, getProcessingFlags, getProcessingInfo, hasProcessingFlags, removeProcessingFlags, setProcessingFlags, setProcessingInfo
-
-
-
-
字段详细资料
-
name
public java.lang.String name
The module name, as opposed to the fileName which includes the module name.fileName will be like "META-INF/my_module_name.kotlin_module".
The fileName is fixed to match after obfuscation by KotlinModuleReferenceFixer.
-
version
public KotlinMetadataVersion version
-
modulePackages
public final java.util.List<KotlinModulePackage> modulePackages
-
-
方法详细资料
-
modulePackagesAccept
public void modulePackagesAccept(KotlinModulePackageVisitor kotlinModulePackageVisitor)
-
accept
public void accept(ResourceFileVisitor resourceFileVisitor)
- 覆盖:
accept在类中ResourceFile
-
accept
public void accept(KotlinModuleVisitor kotlinModuleVisitor)
-
-