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

com.yworks.yshrink.model.FieldDescriptor 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: 4.1.1
Show newest version
package com.yworks.yshrink.model;

import java.io.File;

/**
 * @author Michael Schroeder, yWorks GmbH http://www.yworks.com
 */
public class FieldDescriptor extends AbstractDescriptor {

  private String desc;
  private String name;

  protected FieldDescriptor( final String desc, final String name, final int access, File sourceJar ) {
    super( access, sourceJar );
    this.desc = desc;
    this.name = name;
  }

  public String getDesc() {
    return desc;
  }

  public String getName() {
    return name;
  }

  public String toString() {
    return "FieldDescriptor{" +
        "name='" + name + '\'' +
        ", type='" + desc + '\'' +
        '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy