Re: URL model class in GWT

2009-03-09 Thread planetsoni
d try is to > also load it into an invisible IFRAME, & then get the DOM for that IFRAME. > I'm not sure if you could do it all in GWT though - I think you'll have to > drop into javascript to accomplish the latter. > > On Mon, Mar 9, 2009 at 1:19 PM, planetsoni wrote: >

Re: URL model class in GWT

2009-03-09 Thread planetsoni
you mean to inject arbitrary HTML text into the page?  There's the HTML > widget class (don't feel like looking up the full package name right now, > but Eclipse should help you find it - it's in the com.google.client UI > stuff). > > On Fri, Mar 6, 2009 at 7:13 PM, plan

Re: URL model class in GWT

2009-03-06 Thread planetsoni
On the same topic. Is there any class that does similar things for html(instead of URL)? What I mean is a class that represent arbitrary HTML element text. (Pretty much like DOM Element object that has public constructor.) Thanks. On Mar 6, 12:38 pm, Lothar Kimmeringer wrote: > planets

Re: URL model class in GWT

2009-03-06 Thread planetsoni
Yes that was my plan B. I just wanted to see if there was something already there for this purpose before I go do that. I guess not. Thanks for your answers. On Mar 6, 12:38 pm, Lothar Kimmeringer wrote: > planetsoni schrieb: > > > So here is the whole thing: > > In the cli

Re: URL model class in GWT

2009-03-06 Thread planetsoni
othar Kimmeringer wrote: > planetsoni schrieb: > > > All I really wanna do is string parsing/creating of URL.  Nothing > > related to connection or streaming. > > Shouldn't a regular expression do the trick in that case? Things > like checking the validity of the h

Re: URL model class in GWT

2009-03-06 Thread planetsoni
Thanks for your quick response. All I really wanna do is string parsing/creating of URL. Nothing related to connection or streaming. On Mar 6, 11:47 am, Lothar Kimmeringer wrote: > planetsoni schrieb: > > > Basically looking for GWT class which is more like java.net.URL. > &g

URL model class in GWT

2009-03-06 Thread planetsoni
I am looking for a class that represents URL model. Basically looking for GWT class which is more like java.net.URL. After searching around for quite bit, I couldn't find one. Since this is very basic need, I believe there must be something out there so I am avoiding writing my own. GWT has URL