}
/** Check if the element has the @Id annotation if it does use that for it's id */
private void checkForTableId(TableObject tableObject, Element element) {
// Check if user wants to use an id other than _id
Id idAnnotation = element.getAnnotation(Id.class);
if (idAnnotation != null) {
if (element.asType().getKind() != TypeKind.LONG
&& !("java.lang.Long".equals(element.asType().toString()))) {
logger.e("@Id must be on a long");
}