Re: How to get XSLT element in the extension class

2008-01-25 Thread Mansour
Henry, My apologies, I think I was over complicating things. I think you are right about this. I had some sort of confusion about the specs, and this discussion resolved it. I will try again, and report the results. Thank you. Henry Zongaro wrote: Hi, Mansour. Mansour <[EMAIL PROTECTED]> wr

Re: How to get XSLT element in the extension class

2008-01-25 Thread Henry Zongaro
Hi, Mansour. Mansour <[EMAIL PROTECTED]> wrote on 2008-01-24 11:27:30 PM: > I really appreciate your help. > tokenize method is not the same, as it reads the elements from the input > xml document. > I have looked at it and was able to implement the replace method in the > same class. [Snipped

Re: How to get XSLT element in the extension class

2008-01-24 Thread Mansour
Henry, I really appreciate your help. tokenize method is not the same, as it reads the elements from the input xml document. I have looked at it and was able to implement the replace method in the same class. public static NodeList replace(String str, String regex, String replacement) {

Re: How to get XSLT element in the extension class

2008-01-24 Thread Henry Zongaro
Hi, Mansour. Mansour <[EMAIL PROTECTED]> wrote on 2008-01-23 04:44:07 PM: > Henry Zongaro wrote: > > Mansour <[EMAIL PROTECTED]> wrote on 2008-01-21 10:40:13 PM: > > > Ok, I need to implement the ESLT function for match. Somehting like > > this: > > > > > > > > >

Re: How to get XSLT element in the extension class

2008-01-23 Thread Mansour
Henry Zongaro wrote: Hi, Mansour. Mansour <[EMAIL PROTECTED]> wrote on 2008-01-21 10:40:13 PM: > Mansour wrote: > > Hello: > > I 've been looking for a way to get the XSLT element its self from the > > ExpressionContext object. I am trying to add some methods for some > > extensions and I hav

Re: How to get XSLT element in the extension class

2008-01-22 Thread Henry Zongaro
Hi, Mansour. Mansour <[EMAIL PROTECTED]> wrote on 2008-01-21 10:40:13 PM: > Mansour wrote: > > Hello: > > I 've been looking for a way to get the XSLT element its self from the > > ExpressionContext object. I am trying to add some methods for some > > extensions and I have learned that these me

Re: How to get XSLT element in the extension class

2008-01-21 Thread Mansour
Either the question is not very clear or I did not wait enough :P Ok, I need to implement the ESLT function for match. Somehting like this: I have added the method match and am able to

How to get XSLT element in the extension class

2007-12-31 Thread Mansour
Hello: I 've been looking for a way to get the XSLT element its self from the ExpressionContext object. I am trying to add some methods for some extensions and I have learned that these methods receive an instance of ExpressionContext when called, however, I couldn't find a way or an example s