protected String getDefaultRootPath(AutoMountContext context, TypeElement elem)
{
AutoMount annotation = context.getAppAnnotation(AutoMount.class);
if (annotation != null)
{
return annotation.defaultRoot().replaceAll("^/+|/+$", "");
}
return "";
}
@Override