[Smax-commit] SF.net SVN: smax: [27] trunk/smaxproto/src/com/mebigfatguy/smaxproto
Status: Alpha
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2008-01-20 04:08:10
|
Revision: 27
http://smax.svn.sourceforge.net/smax/?rev=27&view=rev
Author: dbrosius
Date: 2008-01-19 20:08:08 -0800 (Sat, 19 Jan 2008)
Log Message:
-----------
warnings
Modified Paths:
--------------
trunk/smaxproto/src/com/mebigfatguy/smaxproto/SmaxProto.java
trunk/smaxproto/src/com/mebigfatguy/smaxproto/SmaxProtoExtensionFunction.java
Modified: trunk/smaxproto/src/com/mebigfatguy/smaxproto/SmaxProto.java
===================================================================
--- trunk/smaxproto/src/com/mebigfatguy/smaxproto/SmaxProto.java 2008-01-20 03:05:06 UTC (rev 26)
+++ trunk/smaxproto/src/com/mebigfatguy/smaxproto/SmaxProto.java 2008-01-20 04:08:08 UTC (rev 27)
@@ -5,6 +5,8 @@
public class SmaxProto extends JFrame {
+ private static final long serialVersionUID = -8804348970700533248L;
+
public static void main(final String[] args) {
JOptionPane.showMessageDialog( null, "SmaxProto\nSimple Mutated API for XML\nSmaxProto is a trademark of MeBigFatGuy.com\n", "smaxproto: copyright 2008", JOptionPane.INFORMATION_MESSAGE);
System.exit(0);
Modified: trunk/smaxproto/src/com/mebigfatguy/smaxproto/SmaxProtoExtensionFunction.java
===================================================================
--- trunk/smaxproto/src/com/mebigfatguy/smaxproto/SmaxProtoExtensionFunction.java 2008-01-20 03:05:06 UTC (rev 26)
+++ trunk/smaxproto/src/com/mebigfatguy/smaxproto/SmaxProtoExtensionFunction.java 2008-01-20 04:08:08 UTC (rev 27)
@@ -25,16 +25,19 @@
public class SmaxProtoExtensionFunction {
private SmaxProtoContentAdapter adapter;
+ @SuppressWarnings("unused")
public SmaxProtoExtensionFunction(ExpressionContext context, SmaxProtoContentAdapter handler)
{
adapter = handler;
}
+ @SuppressWarnings("unused")
public String startDocument(ExpressionContext context) {
String status = adapter.startDocument();
return status;
}
+ @SuppressWarnings("unused")
public void endDocument(ExpressionContext context) {
adapter.endDocument();
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|