[Simple-support] same data-typed ElementList in ElementListUnion
Brought to you by:
niallg
|
From: Jaewoo L. <dl...@gm...> - 2013-01-11 09:36:58
|
Hi, Niall.
I am defining ElementListUnion like below.
@ElementListUnion({
@ElementList(name = "low", entry = "low", inline = true,
required = false, type = IVXBPQ.class),
@ElementList(name = "high", entry = "high", inline = true, required =
false, type = IVXBPQ.class),
@ElementList(name = "width", entry = "width", inline = true, required =
false, type = PQ.class),
@ElementList(name = "center", entry = "center", inline = true, required =
false, type = PQ.class)
}
and, I inputed sample code like below.
<low name = "" />
<high name = "" />
but output came like below
<low name = ""/>
<low name = ""/>
------------------------------------------------------------
In ElementListUnion, Couldn't I define same data-typed ElementList? or is
it bug?
Thanks for your help.
|