Projekt

Obecné

Profil

Stáhnout (299 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
package serialize;
2

    
3
import java.io.Serializable;
4

    
5
public class Parent implements Serializable {
6

    
7
	private static final long serialVersionUID = 1L;
8
	
9
	String str = "ABCD";
10
	boolean abc = true;
11
	double y = 59.87;
12
	// TODO Contain c[] = new Contain[] {new Contain(), new Contain(), new Contain()};
13
	
14
}
(3-3/3)