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

com.cedarsoft.annotations.instrumentation.test.WithPrimitiveNullableAnnot Maven / Gradle / Ivy

There is a newer version: 8.9.0
Show newest version
package com.cedarsoft.annotations.instrumentation.test;

import javax.annotation.Nonnull;

/**
 * @author Johannes Schneider ([email protected])
 * @noinspection NullableProblems
 */
public class WithPrimitiveNullableAnnot {
  @Nonnull
  private int a;

  public WithPrimitiveNullableAnnot( @Nonnull int a ) {
    this.a = a;
  }

  @Nonnull
  public int getA() {
    return a;
  }

  public void setA( @Nonnull int a ) {
    this.a = a;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy