b.addln(
"{0} property = _targetService.{1}();",
serviceInterface.getName(),
readPropertyMethodName);
b.addln("if (property == null)");
b.add(" throw new java.lang.NullPointerException(");
b.addQuoted(ImplMessages.servicePropertyWasNull(propertyName, targetService));
b.addln(");");
b.addln("return property;");