Package org.wicketstuff.console.scala

Examples of org.wicketstuff.console.scala.ScalaScriptEngineWithTemplatesWindow


    tester.startComponent(new ScalaScriptEnginePanel("foo"));
    tester.startComponent(new ScalaScriptEngineWindow("foo"));
    tester.startComponent(new ScalaScriptEngineWithTemplatesPanel("foo",
      new PackagedScriptTemplates()));
    tester.startComponent(new ScalaScriptEngineWithTemplatesWindow("foo", null,
      new PackagedScriptTemplates()));
  }
View Full Code Here


  public ScalaEngineWithTemplatesWindowTestPage()
  {

    final IDataProvider<ScriptTemplate> dataProvider = new ListDataProvider<ScriptTemplate>(
      new PackagedScriptTemplates().findAll(Lang.SCALA));
    add(window = new ScalaScriptEngineWithTemplatesWindow("window", null, dataProvider));
    openLink = new OpenLink("link", window);
    add(openLink);
  }
View Full Code Here

TOP

Related Classes of org.wicketstuff.console.scala.ScalaScriptEngineWithTemplatesWindow

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.