}
private void loadPerspectives() {
ConfigurationServiceAsync configurationServiceAsync = GWT.create( ConfigurationService.class );
PerspectiveLoader perspectiveLoader = new PerspectiveLoader( configurationServiceAsync );
perspectiveLoader.loadPerspectives( new LoadPerspectives() {
public void loadPerspectives(Collection<Perspective> perspectives) {
for ( Perspective perspective : perspectives ) {
perspectivesPanel.addPerspective( perspective );
}
}