コード例 #1
0
  public static boolean approximated(final CiaType obj
      //                    final VectorAttributeGroup vectorAttributeGroup
      ) {
    if (obj == null) {
      throw new IllegalArgumentException("null object");
    }

    final Boolean approximated = obj.isApproximated();
    return (approximated == null ? DEFAULT_APPROXIMATED : approximated);
  }