~vcs-imports/eclipse-rap/trunk

« back to all changes in this revision

Viewing changes to org.eclipse.rap.rwt/src/org/eclipse/rwt/internal/service/ServiceManager.java

  • Committer: fappel
  • Date: 2008-10-17 11:16:22 UTC
  • Revision ID: vcs-imports@canonical.com-20081017111622-t2hfeobi76ralzbt
Improvements of Startup behavior, see Bug  245633

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
            String name = attributes.getNamedItem( "class" ).getNodeValue();
69
69
            String param = "requestparameter";
70
70
            String id = attributes.getNamedItem( param ).getNodeValue();
71
 
            Class clazz = ServiceManager.class.getClassLoader().loadClass( name );
 
71
            Class clazz
 
72
              = ServiceManager.class.getClassLoader().loadClass( name );
72
73
            Object handlerInstance = clazz.newInstance();
73
74
            registerServiceHandler( id, ( IServiceHandler )handlerInstance );
74
75
          }