All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yworks.yguard.obf.ObfuscationConfig Maven / Gradle / Ivy

Go to download

The open-source Java obfuscation tool working with Ant and Gradle by yWorks - the diagramming experts

There is a newer version: 2.10.0
Show newest version
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