package java_integration.fixtures;

public class ProtectedInstanceMethod {
  protected String theProtectedMethod() {
    return "42";
  }
}