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 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

Back to the top