mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
17 lines
465 B
HTML
17 lines
465 B
HTML
<html>
|
|
<body>
|
|
Reports <code>Externalizable</code> classes that define <code>readObject()</code>
|
|
or <code>writeObject()</code> methods. These methods are not called for serialization of
|
|
<code>Externalizable</code> objects.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
abstract class Crucial implements Externalizable {
|
|
int value;
|
|
private void readObject(ObjectInputStream in) {
|
|
value = in.readInt();
|
|
}
|
|
}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |