コンパイルしようとしている次の .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;
}
}
だから問題は、私が作成しているときとでPair
定義されている をどのように参照するのですか?com.test.foo.nan
PairStore
Registration
com.test.foo.bar