upload webkit/tizen 2.0_beta source.
[framework/web/webkit-efl.git] / LayoutTests / java / lc3.java
1 /*
2  * Copyright (C) 2010 Apple Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public License
15  * along with this library; see the file COPYING.LIB.  If not, write to
16  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  *
19  */
20
21 import java.applet.Applet;
22 import com.netscape.javascript.qa.liveconnect.*;
23 import com.netscape.javascript.qa.lc3.bool.*;
24 import com.netscape.javascript.qa.lc3.jsnull.*;
25 import com.netscape.javascript.qa.lc3.jsobject.*;
26 import com.netscape.javascript.qa.lc3.number.*;
27 import com.netscape.javascript.qa.lc3.string.*;
28 import com.netscape.javascript.qa.lc3.undefined.*;
29
30 public class lc3 extends Applet {
31
32     public Object createQAObject(String name) throws Exception {
33         Class theClass  = Class.forName(name);
34         return theClass.newInstance();
35     }
36
37     public byte[] stringToByteArray(String string) {
38         return string.getBytes();
39     }
40 }