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 void void_test_func(); 21 boolean bool_test_func([in] boolean inParam, [out] boolean outParam, [inout] boolean inoutParam); 22 byte byte_test_func([in] byte inParam, [out] byte outParam, [inout] byte inoutParam); 23 short short_test_func([in] short inParam, [out] short outParam, [inout] short inoutParam); 24 int int_test_func([in] int inParam, [out] int outParam, [inout] int inoutParam); 25 long long_test_func([in] long inParam, [out] long outParam, [inout] long inoutParam); 26 String string_test_func([in] String inParam, [out] String outParam, [inout] String inoutParam); 27 float float_test_func([in] float inParam, [out] float outParam, [inout] float inoutParam); 28 double double_test_func([in] double inParam, [out] double outParam, [inout] double inoutParam); 29 char char_test_func([in] char inParam, [out] char outParam, [inout] char inoutParam); // Ts不支持 30 myseq seq_test_func([in] myseq inParam, [out] myseq outParam, [inout] myseq inoutParam); 31 myinterface interface_test_func([in] myinterface inParam, [out] myinterface outParam, [inout] myinterface inoutParam); 32} 33