, , , , custom Eclipse refactorings ( Refactor! Pro .Net, , ).
, , , , . .
, , . :
class Person {
public Person(String name, int age);
public Person(String name, int numberOfChildren);
}
, Person.WithAge, .
, , . , .
, . :
public Person(String name, int age) {
this(name);
withAge(age);
}
.
( , Age , , , . , , withAge - . , ...)