Package avrobase.data

Examples of avrobase.data.Update


* Time: 9:15 AM
*/
public class RowTest {
  @Test
  public void testRowClone() {
    Update u = new Update();
    u.bag = "23";
    u.owner = "1";
    u.created = System.currentTimeMillis();
    u.updated = System.currentTimeMillis();
    u.image = "1";
View Full Code Here


    System.out.println(newrow);
  }

  @Test
  public void testRowSerialization() throws IOException, ClassNotFoundException {
    Update u = new Update();
    u.bag = "23";
    u.owner = "1";
    u.created = System.currentTimeMillis();
    u.updated = System.currentTimeMillis();
    u.image = "1";
View Full Code Here

TOP

Related Classes of avrobase.data.Update

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.