(java.io.ObjectOutputStream s)
| 1267 | Don't serialize non-serializable objects. |
| 1268 | */ |
| 1269 | private synchronized void writeObject(java.io.ObjectOutputStream s) |
| 1270 | throws IOException |
| 1271 | { |
| 1272 | // clear name resolvers... don't know if this is necessary. |
| 1273 | names = null; |
| 1274 | |
| 1275 | s.defaultWriteObject(); |
| 1276 | } |
| 1277 | |
| 1278 | /** |
| 1279 | Invoke a method in this namespace with the specified args and |