Package net.emaze.dysfunctional.dispatching.adapting

Examples of net.emaze.dysfunctional.dispatching.adapting.ConcatenateString


        new Flipper<String, String, String>(null);
    }

    @Test
    public void decoratingWithFlipperFlipsParams() {
        final ConcatenateString concat = new ConcatenateString();
        final BinaryDelegate<String, String, String> flipped = new Flipper<String, String, String>(concat);
        Assert.assertEquals("latterformer", flipped.perform("former", "latter"));
    }
View Full Code Here

TOP

Related Classes of net.emaze.dysfunctional.dispatching.adapting.ConcatenateString

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.