com.yworks.yguard.obf.ObfuscationConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of retroguard Show documentation
Show all versions of retroguard Show documentation
The open-source Java obfuscation tool working with Ant and Gradle by yWorks - the diagramming experts
package com.yworks.yguard.obf;
/**
* Encapsulation of annotation configuration data
*/
public class ObfuscationConfig {
public static String annotationClassName = "com/yworks/util/annotation/Obfuscation";
public final boolean applyToMembers;
public final boolean exclude;
public static final ObfuscationConfig DEFAULT = new ObfuscationConfig(false, false);
public ObfuscationConfig(boolean exclude, boolean applyToMembers) {
this.applyToMembers = applyToMembers;
this.exclude = exclude;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy