Package org.olat.core.gui.dev

Examples of org.olat.core.gui.dev.IDE


     
      String com = ureq.getParameter("com");
      // ------- open java IDE -------
      if (com.equals("ojava")) {
        // open java editor with the given java class source
        IDE ide = (IDE) ServiceFactory.getServiceOrNull(IDE.class);
        if (ide != null) {
          String cl = ureq.getParameter("class");
          // cl e.g. org.olat.core.MyClass
          //ide does not work yet, just show sourcecode in new browser window
          try {
View Full Code Here

TOP

Related Classes of org.olat.core.gui.dev.IDE

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.