Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 30th, 2012  |  syntax: None  |  size: 0.45 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. @Grapes([
  2.   @Grab("org.apache.pivot:pivot-core:2.0"),
  3.   @Grab("org.apache.pivot:pivot-wtk:2.0"),
  4.   @Grab("org.apache.pivot:pivot-wtk-terra:2.0")
  5.   ])
  6. import org.apache.pivot.wtk.ScriptApplication
  7.  
  8. /**
  9.  * GroovyからApache PivotのBXMLを実行
  10.  */
  11. public class GroovyScriptApplication {
  12.  
  13.   /**
  14.    * BXMLファイルを実行
  15.    * @param args --src=/BXMLファイル名
  16.    */
  17.   public static void main(String[] args) {
  18.     ScriptApplication.main(args)
  19.   }
  20.  
  21. }