Ejemplo n.º 1
0
 public boolean getEnsureResultMappingValue() {
   Boolean value = AnnotationValueUtil.toBoolean(ensureResultMapping);
   if (value == null) {
     throw new AptIllegalStateException("ensureResultMapping");
   }
   return value.booleanValue();
 }
Ejemplo n.º 2
0
 public boolean getImmutableValue() {
   Boolean result = AnnotationValueUtil.toBoolean(immutable);
   if (result == null) {
     throw new AptIllegalStateException("immutable");
   }
   return result.booleanValue();
 }