Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] Contributing a build output console parser

I can't tell off hand, just open a bug in bugzilla. We can discuss possible solutions there and keep track of things in there. Emails are just to easy to lose sight of.

Andrew

On Tue, May 24, 2011 at 12:40 PM, Priyadarshan Gupta <priyadarshan.eclipse@xxxxxxxxx> wrote:
I get that this won't work but can we, to accommodate other non trivial error parsers derived from IErrorParserNamed, provide a clone() in that interface ?
Will there be issues ?


   try {
            if (errorParser instanceof IErrorParserNamed) {
                return (IErrorParserNamed) errorParser.clone();
            }
        } catch (CloneNotSupportedException e) {
            CCorePlugin.log(e);
        }

Thanks,
Priyadarshan

_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-dev



Back to the top