Files
openide/java/java-impl/resources/inspectionDescriptions/SerializableHasSerializationMethods.html
Leonid Shalupov 40795fe787 IJI-2422: community/java: move resources under resources root
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
2025-02-05 04:43:28 +00:00

28 lines
892 B
HTML

<html>
<body>
Reports <code>Serializable</code> classes
that do not implement <code>readObject()</code> and <code>writeObject()</code> methods.
<p>
If <code>readObject()</code> and <code>writeObject()</code> methods are not implemented,
the default serialization algorithms are used,
which may be sub-optimal for performance and compatibility in many environments.
</p>
<!-- tooltip end -->
<p>
Use the following options to configure the inspection:
</p>
<ul>
<li>
List classes whose inheritors should not be reported by this inspection.
This is meant for classes that inherit
<code>Serializable</code> from a superclass but are not intended for serialization.
</li>
<li>
Whether to ignore <code>Serializable</code> classes without non-static fields.
</li>
<li>
Whether to ignore <code>Serializable</code> anonymous classes.
</li>
</ul>
</body>
</html>