Skip to content
Snippets Groups Projects
Commit 8c01813a authored by uhensler's avatar uhensler
Browse files

OO-4300: Naming conventions

parent 48b8cdb8
No related branches found
No related tags found
No related merge requests found
...@@ -78,7 +78,7 @@ public class CurriculumLearningPathRepositoryListController extends FormBasicCon ...@@ -78,7 +78,7 @@ public class CurriculumLearningPathRepositoryListController extends FormBasicCon
private FlexiTableElement tableEl; private FlexiTableElement tableEl;
private CurriculumLearningPathRepositoryDataModel dataModel; private CurriculumLearningPathRepositoryDataModel dataModel;
private LearningPathIdentityCtrl currentIdentityCtrl; private LearningPathIdentityController currentIdentityCtrl;
private final TooledStackedPanel stackPanel; private final TooledStackedPanel stackPanel;
private final CurriculumElement curriculumElement; private final CurriculumElement curriculumElement;
...@@ -195,7 +195,7 @@ public class CurriculumLearningPathRepositoryListController extends FormBasicCon ...@@ -195,7 +195,7 @@ public class CurriculumLearningPathRepositoryListController extends FormBasicCon
IdentityEnvironment identityEnv = new IdentityEnvironment(); IdentityEnvironment identityEnv = new IdentityEnvironment();
identityEnv.setIdentity(participant); identityEnv.setIdentity(participant);
UserCourseEnvironment coachedCourseEnv = new UserCourseEnvironmentImpl(identityEnv, courseEnvironment); UserCourseEnvironment coachedCourseEnv = new UserCourseEnvironmentImpl(identityEnv, courseEnvironment);
currentIdentityCtrl = new LearningPathIdentityCtrl(ureq, bwControl, stackPanel, coachedCourseEnv); currentIdentityCtrl = new LearningPathIdentityController(ureq, bwControl, stackPanel, coachedCourseEnv);
listenTo(currentIdentityCtrl); listenTo(currentIdentityCtrl);
String title = row.getRepositoryEntry().getDisplayname().length() > 30 String title = row.getRepositoryEntry().getDisplayname().length() > 30
? row.getRepositoryEntry().getDisplayname().substring(0, 30) + "..." ? row.getRepositoryEntry().getDisplayname().substring(0, 30) + "..."
......
...@@ -36,12 +36,12 @@ import org.olat.course.run.userview.UserCourseEnvironmentImpl; ...@@ -36,12 +36,12 @@ import org.olat.course.run.userview.UserCourseEnvironmentImpl;
* @author uhensler, urs.hensler@frentix.com, http://www.frentix.com * @author uhensler, urs.hensler@frentix.com, http://www.frentix.com
* *
*/ */
public class LearningPathIdentityCtrl extends BasicController { public class LearningPathIdentityController extends BasicController {
private CoachedIdentityLargeInfosController coachedIdentityLargeInfosCtrl; private CoachedIdentityLargeInfosController coachedIdentityLargeInfosCtrl;
private LearningPathListController learningPathListCtrl; private LearningPathListController learningPathListCtrl;
public LearningPathIdentityCtrl(UserRequest ureq, WindowControl wControl, TooledStackedPanel stackPanel, public LearningPathIdentityController(UserRequest ureq, WindowControl wControl, TooledStackedPanel stackPanel,
UserCourseEnvironment coachedCourseEnv) { UserCourseEnvironment coachedCourseEnv) {
super(ureq, wControl); super(ureq, wControl);
......
...@@ -80,7 +80,7 @@ public class LearningPathIdentityListController extends FormBasicController impl ...@@ -80,7 +80,7 @@ public class LearningPathIdentityListController extends FormBasicController impl
private FlexiTableElement tableEl; private FlexiTableElement tableEl;
private LearningPathIdentityDataModel dataModel; private LearningPathIdentityDataModel dataModel;
private LearningPathIdentityCtrl currentIdentityCtrl; private LearningPathIdentityController currentIdentityCtrl;
private final TooledStackedPanel stackPanel; private final TooledStackedPanel stackPanel;
private final UserCourseEnvironment coachCourseEnv; private final UserCourseEnvironment coachCourseEnv;
...@@ -219,7 +219,7 @@ public class LearningPathIdentityListController extends FormBasicController impl ...@@ -219,7 +219,7 @@ public class LearningPathIdentityListController extends FormBasicController impl
IdentityEnvironment identityEnv = new IdentityEnvironment(); IdentityEnvironment identityEnv = new IdentityEnvironment();
identityEnv.setIdentity(coachedIdentity); identityEnv.setIdentity(coachedIdentity);
UserCourseEnvironment coachedCourseEnv = new UserCourseEnvironmentImpl(identityEnv, coachCourseEnv.getCourseEnvironment()); UserCourseEnvironment coachedCourseEnv = new UserCourseEnvironmentImpl(identityEnv, coachCourseEnv.getCourseEnvironment());
currentIdentityCtrl = new LearningPathIdentityCtrl(ureq, bwControl, stackPanel, coachedCourseEnv); currentIdentityCtrl = new LearningPathIdentityController(ureq, bwControl, stackPanel, coachedCourseEnv);
listenTo(currentIdentityCtrl); listenTo(currentIdentityCtrl);
stackPanel.pushController(fullName, currentIdentityCtrl); stackPanel.pushController(fullName, currentIdentityCtrl);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment