Re: [Simple-support] Deserializing Style-Tag
Brought to you by:
niallg
|
From: Maxim S. <sol...@gm...> - 2012-08-21 01:55:16
|
I believe it is something like
<div class="button" style="..." ...></div>
can not be mapped directly to
@Root
class Div {
private String class; // <-- error is here
}
can easily be implemented as
@Root
class Div {
@Attribute(name="class")
private String cssClass; // <-- no error
}
something like this
On Tue, Aug 21, 2012 at 5:47 AM, Niall Gallagher - Yieldbroker
<Nia...@yi...> wrote:
> Can you provide an example, I am not sure what you are talking about.
>
>
>
> From: M. D. [mailto:m....@we...]
> Sent: Monday, 20 August 2012 9:37 PM
> To: sim...@li...
> Subject: [Simple-support] Deserializing Style-Tag
>
>
>
> Hello,
>
>
>
> I would like to deserialize Style-tag of html with Simple. I noticed that
> the attribute "class" can't be mapped to an Instance variable in java.
>
> Is there any solution for that?
>
>
>
> Thanks in advance
>
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> Simple-support mailing list
> Sim...@li...
> https://lists.sourceforge.net/lists/listinfo/simple-support
>
--
WBR
Maxim aka solomax
|