#108 Consistent package naming throughout the examples
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<class-diagram version="1.1.8" icons="true" automaticImage="PNG" always-add-relationships="false" generalizations="true"
|
||||
realizations="true" associations="true" dependencies="false" nesting-relationships="true">
|
||||
<class id="1" language="java" name="com.iluwatar.Person" project="repository"
|
||||
file="/repository/src/main/java/com/iluwatar/Person.java" binary="false" corner="BOTTOM_RIGHT">
|
||||
<class id="1" language="java" name="com.iluwatar.repository.Person" project="repository"
|
||||
file="/repository/src/main/java/com/iluwatar/repository/Person.java" binary="false" corner="BOTTOM_RIGHT">
|
||||
<position height="-1" width="-1" x="109" y="166"/>
|
||||
<display autosize="true" stereotype="true" package="true" initial-value="false" signature="true"
|
||||
sort-features="false" accessors="true" visibility="true">
|
||||
@ -10,8 +10,8 @@
|
||||
<operations public="true" package="true" protected="true" private="true" static="true"/>
|
||||
</display>
|
||||
</class>
|
||||
<interface id="2" language="java" name="com.iluwatar.PersonDao" project="repository"
|
||||
file="/repository/src/main/java/com/iluwatar/PersonDao.java" binary="false" corner="BOTTOM_RIGHT">
|
||||
<interface id="2" language="java" name="com.iluwatar.repository.PersonDao" project="repository"
|
||||
file="/repository/src/main/java/com/iluwatar/repository/PersonDao.java" binary="false" corner="BOTTOM_RIGHT">
|
||||
<position height="-1" width="-1" x="350" y="67"/>
|
||||
<display autosize="true" stereotype="true" package="true" initial-value="false" signature="true"
|
||||
sort-features="false" accessors="true" visibility="true">
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.repository;
|
||||
|
||||
import java.util.List;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.repository;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
@ -1,4 +1,4 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.repository;
|
||||
|
||||
import java.util.List;
|
||||
|
@ -1,7 +1,9 @@
|
||||
package com.iluwatar;
|
||||
package com.iluwatar.repository;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import com.iluwatar.repository.App;
|
||||
|
||||
public class AppTest {
|
||||
|
||||
@Test
|
Reference in New Issue
Block a user