Package com.enragedginger.stephenerialization.streamer

Examples of com.enragedginger.stephenerialization.streamer.SimpleDestephenerializationStream


   * Creates a new {@link DestephenerializationStream}.
   * @param streamer The stream to wrap.
   * @return A new {@link DestephenerializationStream}.
   */
  private DestephenerializationStream createDestephenerializationStream(ObjectInputStream streamer) {
    return new SimpleDestephenerializationStream(streamer);
  }
View Full Code Here


   * Creates a new {@link DestephenerializationStream}.
   * @param streamer The stream to wrap.
   * @return A new {@link DestephenerializationStream}.
   */
  private DestephenerializationStream createDestephenerializationStream(ObjectInputStream streamer) {
    return new SimpleDestephenerializationStream(streamer);
  }
View Full Code Here

   * Creates a {@link DestephenerializationStream}.
   * @param streamer The stream to wrap.
   * @return The {@link DestephenerializationStream}.
   */
  protected DestephenerializationStream createStream(ObjectInputStream streamer) {
    return new SimpleDestephenerializationStream(streamer);
  }
View Full Code Here

TOP

Related Classes of com.enragedginger.stephenerialization.streamer.SimpleDestephenerializationStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.