List of usage examples for java.io Serializable interface-usage
From source file Person.java
class Person implements Serializable { private String firstName; private String lastName;
From source file Person.java
class Person implements Serializable { private String firstName; private String lastName;
From source file Person.java
class Person implements Serializable { private String firstName; private String lastName;
From source file Person.java
class Person implements Serializable { private String firstName; private String lastName;
From source file Person.java
class Person implements Serializable { private String firstName; private String lastName;
From source file Main.java
public class Main implements Serializable { private Long id; private String title; private String author;
From source file CubicBezierCurve.java
/** * a class that models a Cubic-Bezier curve * @author Adam Levi, Marina Skarbovsky */ public class CubicBezierCurve implements Serializable { private static final long serialVersionUID = -5219859720055898005L;
From source file org.lnicholls.galleon.database.PlaylistTrack.java
/**
* Auto-generated using Hibernate hbm2java tool.
* Copyright (C) 2005, 2006 Leon Nicholls
* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later
* version.
From source file au.com.ors.rest.bean.AutoCheckReq.java
public class AutoCheckReq implements Serializable { public AutoCheckReq(@JsonProperty("driverLicenseNumber") String driverLicenseNumber, @JsonProperty("fullName") String fullName, @JsonProperty("postCode") String postCode) { super(); this.driverLicenseNumber = driverLicenseNumber;
From source file Employee.java
class Employee implements java.io.Serializable { public String name; public String address; public transient int SSN; public int number;