Package org.watermint.sourcecolon.org.opensolaris.opengrok.analysis.plain

Examples of org.watermint.sourcecolon.org.opensolaris.opengrok.analysis.plain.PlainXref


            throws IOException {
        assertEquals(expected, env.isObfuscatingEMailAddresses());

        String address = "opengrok-discuss@opensolaris.org";

        PlainXref xref = new PlainXref(new StringReader(address));
        StringWriter out = new StringWriter();
        xref.write(out);

        String expectedAddress = expected ?
                address.replace("@", " (at) ") : address;

        String expectedOutput =
View Full Code Here

TOP

Related Classes of org.watermint.sourcecolon.org.opensolaris.opengrok.analysis.plain.PlainXref

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.