KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jruby > libraries > StringScannerLibrary


1 package org.jruby.libraries;
2
3 import java.io.IOException JavaDoc;
4
5 import org.jruby.Ruby;
6 import org.jruby.RubyStringScanner;
7 import org.jruby.runtime.load.Library;
8
9 /**
10  * @author kscott
11  *
12  */

13 public class StringScannerLibrary implements Library {
14
15     /**
16      * @see org.jruby.runtime.load.Library#load(org.jruby.Ruby)
17      */

18     public void load(Ruby runtime) throws IOException JavaDoc {
19         RubyStringScanner.createScannerClass(runtime);
20     }
21
22 }
23
Popular Tags