Does anyone has survey portlet java source code? I have decompiled the source code but it is not valid due to some inner classes the survey class has used.
Survey.java has generated a inner class with some method getCatalog with some return variable Survey.access$000() and it is giving the compile time error
Cannot resolve method access$000()
private static class SurveyPermissionCatalogFinder
/* */ implements PermissionCatalogFinder
/* */ {
/* */ private static final long serialVersionUID = 1L;
/* */ private static SurveyPermissionCatalogFinder one;
/* */
/* */ public PermissionCatalog getCatalog()
/* */ {
/* 225 */ return Survey.access$000();
/* */ }
/* */ public static SurveyPermissionCatalogFinder getInstance() {
/* 228 */ if (one == null) {
/* 229 */ one = new SurveyPermissionCatalogFinder();
/* */ }
/* 231 */ return one;
/* */ }
/* */ }