|
Spring Framework example source code file (PrimitiveAdder.java)
The Spring Framework PrimitiveAdder.java source codepackage org.springframework.scripting.jruby; /** * http://opensource.atlassian.com/projects/spring/browse/SPR-3026 * * @author Rick Evans */ public interface PrimitiveAdder { int addInts(int x, int y); short addShorts(short x, short y); long addLongs(long x, long y); float addFloats(float x, float y); double addDoubles(double x, double y); boolean resultIsPositive(int x, int y); String concatenate(char c, char d); char echo(char c); } Other Spring Framework examples (source code examples)Here is a short list of links related to this Spring Framework PrimitiveAdder.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.