in reply to Re^2: OO Perl: Nested classes question
in thread OO Perl: Nested classes question

Thanx to All... I think the solution of my problem was the usage of the hash to store new classes, which is especially elegant solution below:
$self->{_condition}{$condition} ||= new Condition;
Actually I did solved the problem with some Java-Collegue, who pointed my mistake, but not so elegant way (I used two methods, one for adding new class, another for setting / getting it's values).