com.cedarsoft.annotations.instrumentation.test.Combined 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;
import com.cedarsoft.annotations.NonUiThread;
/**
* @author Johannes Schneider ([email protected])
*/
public class Combined {
@Nonnull
@NonUiThread
public String doIt() {
System.out.println("com.cedarsoft.annotations.instrumentation.test.Combined.doIt");
return null;
}
}