isGenClassName method

bool isGenClassName()

is generated type name. starts with uppercase letter, is public.

Implementation

bool isGenClassName() {
  if (!isGenTypeName()) return false;
  if (!isPublic()) return false;
  if (!startsWithUpper()) return false;
  return true;
}