class_Personellizer.php
Go to the documentation of this file.00001 <?php
00024 interface Personellizer extends FrameworkInterface {
00028
00034 function removeMinMaxAge ();
00035
00041 function createBirthday ();
00042
00053 function isDateValid ($year, $month, $day);
00054
00058
00065 function isEmployed ();
00066
00073 function isMarried ();
00074
00081 function isMale ();
00082
00089 function isFemale ();
00090
00094
00100 function getSurname ();
00101
00107 function getFamily ();
00108
00114 function getGender ();
00115
00121 function getSalary ();
00122
00126
00133 function setSurname ($surname);
00134
00141 function setFamily ($family);
00142
00150 function setGender ($gender);
00151
00158 function setEmployed ($employed);
00159
00166 function setMarried ($married);
00167
00176 function setBirthday ($year, $month, $day);
00177
00181
00188 function increaseSalary ($add);
00189
00196 function decreaseSalary ($sub);
00197 }
00198
00199
00200 ?>