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

io.norberg.automatter.processor.Field Maven / Gradle / Ivy

There is a newer version: 0.26.2
Show newest version
package io.norberg.automatter.processor;

import javax.lang.model.element.ExecutableElement;
import javax.lang.model.type.TypeMirror;

class Field {
  final ExecutableElement method;
  final TypeMirror type;

  public Field(final ExecutableElement method, final TypeMirror type) {
    this.method = method;
    this.type = type;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy