com.cedarsoft.annotations.instrumentation.test.BaseClass 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])
*/
public class BaseClass {
@Nonnull
private final String asdf;
public BaseClass(@Nonnull String asdf) {
this.asdf = asdf;
}
@Nonnull
public String getAsdf() {
return asdf;
}
}