}
};
private void writeLocation(TypeElement e) {
String className = e.getQualifiedName().toString();
TreePath treePath = pss.getClassTreePath(className);
found: {
if (treePath != null) {
CompilationUnitTree cu = treePath.getCompilationUnit();
if (cu != null && cu.getSourceFile().getKind() == JavaFileObject.Kind.SOURCE) {
String projectPath = pss.getProjectDir().getAbsolutePath();
String cuPath = cu.getSourceFile().toUri().getPath();
if (cuPath.contains(projectPath)) {
string("in:" + cuPath.substring(projectPath.length() + 1));