Alex Light | eb7c144 | 2015-08-31 13:17:42 -0700 | [diff] [blame] | 1 | # /* |
| 2 | # * Copyright (C) 2015 The Android Open Source Project |
| 3 | # * |
| 4 | # * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # * you may not use this file except in compliance with the License. |
| 6 | # * You may obtain a copy of the License at |
| 7 | # * |
| 8 | # * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # * |
| 10 | # * Unless required by applicable law or agreed to in writing, software |
| 11 | # * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # * See the License for the specific language governing permissions and |
| 14 | # * limitations under the License. |
| 15 | # */ |
| 16 | # |
| 17 | # public interface iface { |
| 18 | # public default String SayHi(String n1, |
| 19 | # String n2, |
| 20 | # String n3, |
| 21 | # String n4, |
| 22 | # String n5, |
| 23 | # String n6, |
| 24 | # String n7, |
| 25 | # String n8, |
| 26 | # String n9, |
| 27 | # String n0) { |
| 28 | # return "Hello"; |
| 29 | # } |
| 30 | # } |
| 31 | |
| 32 | .class public abstract interface Liface; |
| 33 | .super Ljava/lang/Object; |
| 34 | |
| 35 | .method public SayHi(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; |
| 36 | .locals 1 |
| 37 | const-string v0, "Hello" |
| 38 | return-object v0 |
| 39 | .end method |
| 40 | |