Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-ant-dev] Ant Test Plan


Thanks -

Glad to help -
Kevin



Jared Burns <jared-eclipse@xxxxxxxxx>@eclipse.org on 11/23/2002 11:07:17 PM

Please respond to platform-ant-dev@xxxxxxxxxxx

Sent by:    platform-ant-dev-admin@xxxxxxxxxxx


To:    platform-ant-dev@xxxxxxxxxxx
cc:     (bcc: Kevin Bedell/Systems/USHO/SunLife)
Subject:    Re: [platform-ant-dev] Ant Test Plan


Thanks for the submission, Kevin, and sorry for my slow response. I've
released your patch to CVS and opened Bug 27033 to record the issue. I
added
your name to the list of contributors at the top of
AntViewContentProvider.java.

Thanks,
- Jared

On Wednesday 13 November 2002 02:58 pm, Kevin.Bedell@xxxxxxxxxxx wrote:
> Here's the patch:
>
>  My company blocks the pserver port so I can't execute a cvs diff from my
> desk :-<
>
> But here is the code. I checked and the StringTokenizer class has been in
> the JDK since version 1.0 - should go backwards as far as needed!
>
> In the class com.r2tech.eclipse.antview.views.AntViewContentProvider.java
>
> 1. Add the import statement:
>
>       import java.util.StringTokenizer;
>
> 2. And replace the String.split() method call with the following lines:
>
>       StringTokenizer st = new StringTokenizer(targetsPref,SEP_REC);
>       String targets[] = new String[st.countTokens()];
>
>       for (int tokenCounter = 0 ; st.hasMoreTokens(); tokenCounter++) {
>             targets[tokenCounter] = st.nextToken();
>       }
>
>
> I've tested this and it works.
>
> Thanks!
> Kevin
>
>
>
>
>
>
> Jared Burns <jared-eclipse@xxxxxxxxx>@eclipse.org on 11/13/2002 03:47:36
PM
>
> Please respond to platform-ant-dev@xxxxxxxxxxx
>
> Sent by:    platform-ant-dev-admin@xxxxxxxxxxx
>
>
> To:    platform-ant-dev@xxxxxxxxxxx
> cc:     (bcc: Kevin Bedell/Systems/USHO/SunLife)
> Subject:    Re: [platform-ant-dev] Ant Test Plan
>
>
> Yes, the version of the AntView in Eclipse is backwards compatible.
>
> I just pulled the split() call out and quickly wrote my own method to do
> the
> job. However, if you have a better patch to submit (I think your version
> just
> changed to use some other system call?), I'd be glad to accept it into
> Eclipse.
>
> - Jared
>
> On Wednesday 13 November 2002 02:38 pm, Kevin.Bedell@xxxxxxxxxxx wrote:
> > I had submitted a patch at sourceforge to AntView to allow it to work
for
> > JDK 1.3.1 - there was a dependency on a jdk 1.4 only method
[String.split
> > ()] in the latest release.
> >
> > Is the AntView code in the release candidate compatible JDK's earlier
>
> than
>
> > 1.4?
> >
> > Thanks -
> > Kevin Bedell
> >
> > http://www.strutskickstart.com
>
> _______________________________________________
> platform-ant-dev mailing list
> platform-ant-dev@xxxxxxxxxxx
> http://dev.eclipse.org/mailman/listinfo/platform-ant-dev
>
>
>
>
---------------------------------------------------------------------------
> This e-mail message (including attachments, if any) is intended for the
use
> of the individual or entity to which it is addressed and may contain
> information that is privileged, proprietary , confidential and exempt
from
> disclosure.  If you are not the intended recipient, you are notified that
> any dissemination, distribution or copying of this communication is
> strictly prohibited.  If you have received this communication in error,
> please notify the sender and erase this e-mail message immediately.
>
---------------------------------------------------------------------------
>
>
> _______________________________________________
> platform-ant-dev mailing list
> platform-ant-dev@xxxxxxxxxxx
> http://dev.eclipse.org/mailman/listinfo/platform-ant-dev

_______________________________________________
platform-ant-dev mailing list
platform-ant-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/platform-ant-dev



---------------------------------------------------------------------------
This e-mail message (including attachments, if any) is intended for the use
of the individual or entity to which it is addressed and may contain
information that is privileged, proprietary , confidential and exempt from
disclosure.  If you are not the intended recipient, you are notified that
any dissemination, distribution or copying of this communication is
strictly prohibited.  If you have received this communication in error,
please notify the sender and erase this e-mail message immediately.
---------------------------------------------------------------------------




Back to the top