Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
341 views
in Technique[技术] by (71.8m points)

java - Remove class= attribute

I'm using simple xml library: http://simple.sourceforge.net/home.php

I have a problem with @ElementList annotation: if I use this annotation like this:

@ElementList
protected List<Element> elements;

My XML file has one more attribute:

<elements class="java.util.ArrayList">

how to remove the attribute class="....." ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The class Attribute tells Simple which implementation of List you use. If it's missing, Simple will look for a proper class itself.

One solution is to use ArrayList instead of List:

@ElementList
protected ArrayList<Element> elements;

Now Simple wont add the class-Attribute.

Another way:

@Path("elements")
@ElementList(inline=true)
protected List<Element> elements;

This inlines your List (no elements-Tag is used) but puts it into a "new" elements-Tag


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...