com.cedarsoft.annotations.instrumentation.test.ConstructorNull 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 ConstructorNull {
public ConstructorNull(@Nonnull String param) {
}
}