~ubuntu-branches/ubuntu/lucid/jruby/lucid

« back to all changes in this revision

Viewing changes to samples/compiler2/MyObjectTest2.java

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Delafond
  • Date: 2009-12-09 17:30:55 UTC
  • Revision ID: james.westby@ubuntu.com-20091209173055-8ffzikq1768gywux
Tags: upstream-1.3.1
ImportĀ upstreamĀ versionĀ 1.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
public class MyObjectTest {
 
2
  public static void main(String[] args) {
 
3
    MyObject2 obj = new MyObject2();
 
4
    obj.booleanMethod(false);
 
5
    obj.byteMethod((byte)1);
 
6
    obj.shortMethod((short)1);
 
7
    obj.charMethod((char)1);
 
8
    obj.intMethod(1);
 
9
    obj.longMethod(1L);
 
10
    obj.floatMethod(1.0f);
 
11
    obj.doubleMethod(1.0);
 
12
  }
 
13
}