1/* 2 * Copyright (c) 2024 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16sequenceable test.myseq; 17interface test.myinterface; 18 19interface test.IFoo { 20 [oneway] void void_test_func(); 21 [oneway] void bool_test_func([in] boolean inParam); 22 [oneway] void byte_test_func([in] byte inParam); 23 [oneway] void short_test_func([in] short inParam); 24 [oneway] void int_test_func([in] int inParam); 25 [oneway] void long_test_func([in] long inParam); 26 [oneway] void string_test_func([in] String inParam); 27 [oneway] void float_test_func([in] float inParam); 28 [oneway] void double_test_func([in] double inParam); 29 [oneway] void char_test_func([in] char inParam); 30 [oneway] void seq_test_func([in] myseq inParam); 31 [oneway] void interface_test_func([in] myinterface inParam); 32} 33