0
我有我試圖編譯以下.avdl文件:如何包含已經在另一個.avdl文件中定義的記錄?
@namespace("com.test.foo.bar")
protocol PairStore {
/* This is already defined in another namespace - "com.test.foo.nan" */
record Pair {
string item1;
string item2;
}
record Registration {
Pair inputPair;
Pair outputPair;
string indexURI;
}
}
所以,問題是我怎麼引用在com.test.foo.nan
當我創造com.test.foo.bar
PairStore
和Registration
被定義Pair
?