Package net.kuujo.vertigo.util.serialization

Examples of net.kuujo.vertigo.util.serialization.Serializer


  public static class SomeExtendingObject extends SomeObject {}

  @Test
  public void testFindSerializer() {
    Serializer serializer1 = SerializerFactory.getSerializer(SomeExtendingObject.class);
    Serializer serializer2 = SerializerFactory.getSerializer(SomeObject.class);
    assertEquals(serializer1, serializer2);
    Serializer serializer3 = SerializerFactory.getSerializer(SomeExtendingInterface.class);
    assertEquals(serializer1, serializer3);
  }
View Full Code Here

TOP

Related Classes of net.kuujo.vertigo.util.serialization.Serializer

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.