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

net.pincette.cls.Field Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package net.pincette.cls;

public class Field {

  Attribute[] attributes;
  String descriptor;
  boolean isDeprecated;
  boolean isSynthetic;
  int modifiers;
  String name;
  Object value;

  public Attribute[] getAttribtutes() {
    return attributes;
  }

  public String getDescriptor() {
    return descriptor;
  }

  public int getModifiers() {
    return modifiers;
  }

  public String getName() {
    return name;
  }

  public String getType() {
    return Util.getType(descriptor);
  }

  public Object getValue() {
    return value;
  }

  public boolean isDeprecated() {
    return isDeprecated;
  }

  public boolean isSynthetic() {
    return isSynthetic;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy