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

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

  public BaseClass(@Nonnull String asdf) {
    this.asdf = asdf;
  }

  @Nonnull
  public String getAsdf() {
    return asdf;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy