[Fb-contrib-commit] SF.net SVN: fb-contrib:[1259] trunk/fb-contrib/samples/SUA_Sample.java
Brought to you by:
dbrosius
From: <dbr...@us...> - 2009-09-06 19:38:37
|
Revision: 1259 http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1259&view=rev Author: dbrosius Date: 2009-09-06 19:38:27 +0000 (Sun, 06 Sep 2009) Log Message: ----------- add normal case Modified Paths: -------------- trunk/fb-contrib/samples/SUA_Sample.java Modified: trunk/fb-contrib/samples/SUA_Sample.java =================================================================== --- trunk/fb-contrib/samples/SUA_Sample.java 2009-09-06 19:35:22 UTC (rev 1258) +++ trunk/fb-contrib/samples/SUA_Sample.java 2009-09-06 19:38:27 UTC (rev 1259) @@ -7,6 +7,18 @@ return new int[10]; } + public char[] normalCase() + { + char[] c = new char[5]; + c[0] = 'h'; + c[1] = 'e'; + c[2] = 'l'; + c[3] = 'l'; + c[4] = 'o'; + + return c; + } + public String[] getDetailedArray() { String [] s = new String[3]; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |