com.cedarsoft.annotations.instrumentation.test.WithPrimitiveNullableAnnot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of instrumentation-test Show documentation
Show all versions of instrumentation-test Show documentation
Test module for annotations based instrumentation
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;
}
}