Silence compiler warnings on XML classes for lack of Serializable version.

This commit is contained in:
jdf
2010-12-24 11:02:29 +00:00
parent 73117b9c3e
commit 459e487437
4 changed files with 4 additions and 0 deletions
+1
View File
@@ -47,6 +47,7 @@ import processing.core.PApplet;
* @usage Web & Application
* @instanceName xml any variable of type XMLElement
*/
@SuppressWarnings("serial")
public class XMLElement implements Serializable {
/** No line number defined. */
public static final int NO_LINE = -1;
@@ -39,6 +39,7 @@ import java.io.PrintWriter;
* @author Marc De Scheemaecker
* @version $Name: RELEASE_2_2_1 $, $Revision: 1.4 $
*/
@SuppressWarnings("serial")
public class XMLException
extends Exception
{
@@ -36,6 +36,7 @@ package processing.xml;
* @author Marc De Scheemaecker
* @version $Name: RELEASE_2_2_1 $, $Revision: 1.3 $
*/
@SuppressWarnings("serial")
public class XMLParseException
extends XMLException
{
@@ -36,6 +36,7 @@ package processing.xml;
* @author Marc De Scheemaecker
* @version $Name: RELEASE_2_2_1 $, $Revision: 1.3 $
*/
@SuppressWarnings("serial")
public class XMLValidationException
extends XMLException
{