Revision: 920
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=920&view=rev
Author: dbrosius
Date: 2007-09-29 19:35:30 -0700 (Sat, 29 Sep 2007)
Log Message:
-----------
add fp to fix
Modified Paths:
--------------
trunk/fb-contrib/samples/SMII_Sample.java
Modified: trunk/fb-contrib/samples/SMII_Sample.java
===================================================================
--- trunk/fb-contrib/samples/SMII_Sample.java 2007-09-27 10:39:13 UTC (rev 919)
+++ trunk/fb-contrib/samples/SMII_Sample.java 2007-09-30 02:35:30 UTC (rev 920)
@@ -57,7 +57,21 @@
public static class Inner
{
- private Inner next;
-
+ private Inner next;
}
+
+ public void testFPInstance(SMII_Sample sample)
+ {
+ SMII_Sample.testInstanceAsFirstParm(sample, "");
+ SMII_Sample.testInstanceAsFirstParm(sample, "");
+ }
+ public static SMII_Sample testInstanceAsFirstParm(SMII_Sample sample, String s1)
+ {
+ return sample.testInstanceAsFirstParm(s1);
+ }
+
+ public SMII_Sample testInstanceAsFirstParm(String s1)
+ {
+ return null;
+ }
}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|