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

org.pojomatic.internal.PropertyField Maven / Gradle / Ivy

package org.pojomatic.internal;

import java.lang.reflect.Field;

public class PropertyField extends AbstractPropertyElement {
  public PropertyField(Field propertyField) {
    super(propertyField);
  }

  @Override
  protected Object accessValue(Object instance)
  throws IllegalArgumentException, IllegalAccessException {
    return element.get(instance);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy