This commit is contained in:
hesham 2019-02-27 04:46:21 +03:00
parent 8a37f15a13
commit dc698c3f88
2 changed files with 96 additions and 96 deletions

View File

@ -28,6 +28,12 @@
<artifactId>joda-time</artifactId> <artifactId>joda-time</artifactId>
<version>2.9.9</version> <version>2.9.9</version>
</dependency> </dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>RELEASE</version>
<scope>compile</scope>
</dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -27,6 +27,10 @@ public class Person {
return car; return car;
} }
public void setCar(Car car) {
this.car = car;
}
public String getName() { public String getName() {
return name; return name;
} }
@ -43,22 +47,12 @@ public class Person {
this.location = location; this.location = location;
} }
public void setCar(Car car) {
this.car = car;
}
public boolean hasCar() { public boolean hasCar() {
if (car.getMake() != null) { return car.getMake() != null;
return true;
}
else return false;
} }
public boolean isPHD() { public boolean isPHD() {
if (this.edu.getLevel() == Level.PHD) { return this.edu.getLevel() == Level.PHD;
return true;
}
else return false;
} }
} }