File: Implementor.j

package info (click to toggle)
jasmin-sable 1.2-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 1,464 kB
  • ctags: 1,903
  • sloc: java: 12,496; makefile: 126; csh: 93; sh: 93
file content (53 lines) | stat: -rw-r--r-- 1,240 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
; --- Copyright Jonathan Meyer 1996. All rights reserved. -----------------
; File:      jasmin/examples/HelloWorld.j
; Author:    Jonathan Meyer, 10 July 1996
; Purpose:   Shows how to define a class that implements an interface
; -------------------------------------------------------------------------

;
; This class implements the examples.AnInterface interface - see
; AnInterface.j
;
.class public examples/Implementor
.super java/lang/Object
.implements examples/AnInterface

;
; standard initializer
;
.method public <init>()V
   aload_0

   invokenonvirtual java/lang/Object/<init>()V
   return
.end method

;
; implement the foo()V method - this is an interface method
;
.method public foo()V
   .limit stack 2

   ; print a simple message
   getstatic java/lang/System/out Ljava/io/PrintStream;
   ldc "Hello Interface"
   invokevirtual java/io/PrintStream/println(Ljava/lang/String;)V

   ; done
   return
.end method

.method public static main([Ljava/lang/String;)V
    .limit stack 2

    ; create a new one of me
    new examples/Implementor
    dup
    invokenonvirtual examples/Implementor/<init>()V
   
    ; now call my interface method foo()
    invokeinterface examples/AnInterface/foo()V 1

    return
.end method