Package org.olat

Package org.olat Description

The full framework is shown below. Please click on a service or component to explore further:

OLAT Services
 
org.olat.core OLAT Common Base Services
 
org.olat.core.gui.components OLAT GUI Component
 



How to's


How to create a direkt jumpin link ?

E.g. Create a direct link to a course-node.
String nodeUrl = new URLEncoder().encode("[" + OresHelper.calculateTypeName(CourseNode.class) + ":" + node.getIdent() + "]");
String link = JumpInManager.getJumpInUri(this.getWindowControl().getBusinessControl()) + nodeUrl;
see org.olat.core.dispatcher.jumpin

How to show status messages ?

Show a translated text as info-message at the top of UI :
this.getWindowControl().setInfo(translator.translate("found.no.result.try.fuzzy.search"));