Searched defs:writeObject (Results 51 - 75 of 260) sorted by relevance

1234567891011

/openjdk7/jdk/test/java/io/Serializable/skipToEndOfBlockData/
H A DSkipToEndOfBlockData.java28 * of the data written by the corresponding writeObject() or
43 private void writeObject(ObjectOutputStream out) throws IOException { method in class:MismatchedRead
129 oout.writeObject(mr);
130 oout.writeObject(mre);
131 oout.writeObject(ib);
/openjdk7/jdk/test/java/io/Serializable/subclass/
H A DTest.java48 * Test if customized readObject and writeObject are called.
56 private void writeObject(ObjectOutputStream os) throws IOException { method in class:B
87 private void writeObject(ObjectOutputStream os) throws IOException { method in class:C
137 os.writeObject(new A());
140 throw new Error("Expected B.writeObject() to be called 3 times;" +
/openjdk7/jdk/test/java/io/Serializable/typeSafeEnum/
H A DTypeSafeEnum.java92 throw new Error("Expected 4 calls to writeObject, only " +
109 private void writeObject(ObjectOutputStream out) throws IOException method in class:TypeSafeEnum
114 System.out.println("TypeSafeEnum.writeObject() " +
140 os.writeObject(writeArray);
/openjdk7/jdk/test/java/util/Hashtable/
H A DSerializationDeadlock.java84 private void writeObject(final ObjectOutputStream oos) method in class:SerializationDeadlock.TestBarrier
114 oos.writeObject(hashtable);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DPSVIDocumentImpl.java140 private void writeObject(ObjectOutputStream out) method in class:PSVIDocumentImpl
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/javax/rmi/CORBA/
H A DStubDelegateImpl.java200 public void writeObject(javax.rmi.CORBA.Stub self, method in class:StubDelegateImpl
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DDynamicStubImpl.java132 private void writeObject( ObjectOutputStream stream ) throws method in class:DynamicStubImpl
/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DStub.java183 private void writeObject(java.io.ObjectOutputStream stream) throws IOException { method in class:Stub
190 stubDelegate.writeObject(this, stream);
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DHashAttributeSet.java68 private void writeObject(ObjectOutputStream s) throws IOException { method in class:HashAttributeSet
74 s.writeObject(attrs[i]);
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DKerberosPrincipal.java237 private void writeObject(ObjectOutputStream oos) method in class:KerberosPrincipal
243 oos.writeObject(krb5Principal.asn1Encode());
244 oos.writeObject(krb5Principal.getRealm().asn1Encode());
H A DKeyImpl.java177 private void writeObject(ObjectOutputStream ois) method in class:KeyImpl
184 ois.writeObject((new EncryptionKey(keyType, keyBytes)).asn1Encode());
/openjdk7/jdk/src/share/classes/javax/security/auth/x500/
H A DX500Principal.java483 private void writeObject(java.io.ObjectOutputStream s) method in class:X500Principal
485 s.writeObject(thisX500Name.getEncodedInternal());
/openjdk7/jdk/src/share/classes/javax/swing/
H A DActionPropertyChangeListener.java127 private void writeObject(ObjectOutputStream s) throws IOException { method in class:ActionPropertyChangeListener
129 s.writeObject(getTarget());
H A DCellRendererPane.java181 private void writeObject(ObjectOutputStream s) throws IOException { method in class:CellRendererPane
H A DInputMap.java218 private void writeObject(ObjectOutputStream s) throws IOException { method in class:InputMap
H A DJCheckBox.java256 * See readObject and writeObject in JComponent for more
259 private void writeObject(ObjectOutputStream s) throws IOException { method in class:JCheckBox
H A DJToggleButton.java320 * See readObject() and writeObject() in JComponent for more
323 private void writeObject(ObjectOutputStream s) throws IOException { method in class:JToggleButton
H A DJToolTip.java191 * See <code>readObject</code> and <code>writeObject</code>
195 private void writeObject(ObjectOutputStream s) throws IOException { method in class:JToolTip
H A DLegacyGlueFocusTraversalPolicy.java178 private void writeObject(ObjectOutputStream out) throws IOException { method in class:LegacyGlueFocusTraversalPolicy
182 out.writeObject(delegatePolicy);
184 out.writeObject(null);
188 out.writeObject(delegateManager);
190 out.writeObject(null);
/openjdk7/jdk/src/share/classes/java/beans/
H A DVetoableChangeSupport.java413 private void writeObject(ObjectOutputStream s) throws IOException { method in class:VetoableChangeSupport
440 s.writeObject(l);
444 s.writeObject(null);
/openjdk7/jdk/src/share/classes/java/security/
H A DCodeSource.java493 private void writeObject(java.io.ObjectOutputStream oos) method in class:CodeSource
520 oos.writeObject(signers);
H A DPermissions.java360 private void writeObject(ObjectOutputStream out) throws IOException { method in class:Permissions
565 private void writeObject(ObjectOutputStream out) throws IOException { method in class:PermissionsHash
/openjdk7/jdk/src/share/classes/java/util/
H A DHashSet.java270 private void writeObject(java.io.ObjectOutputStream s) method in class:HashSet
284 s.writeObject(e);
/openjdk7/jdk/src/share/classes/javax/management/
H A DNumericValueExp.java235 private void writeObject(ObjectOutputStream out) method in class:NumericValueExp
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DModelMBeanNotificationInfo.java404 private void writeObject(ObjectOutputStream out) method in class:ModelMBeanNotificationInfo

Completed in 82 milliseconds

1234567891011