10 lines
181 B
Java
Raw Normal View History

2016-07-29 11:55:35 +02:00
package com.baeldung.immutable;
import org.immutables.value.Value;
@Value.Immutable
2016-07-30 10:50:47 +02:00
public abstract class Person {
abstract String getName();
abstract Integer getAge();
2016-07-29 11:55:35 +02:00
}