Corrections to package naming.

This commit is contained in:
Ilkka Seppala 2015-09-19 20:34:57 +03:00
parent e3f8ef00ae
commit c6aae59407
6 changed files with 19 additions and 19 deletions

View File

@ -32,10 +32,10 @@
<operations public="true" package="true" protected="true" private="true" static="true"/> <operations public="true" package="true" protected="true" private="true" static="true"/>
</display> </display>
</class> </class>
<interface id="4" language="java" name="com.iluwatar.fluentinterface.fluentiterable.FluentIterable" <interface id="4" language="java" name="com.iluwatar.fluentinterface.fluentiterable.core.FluentIterable"
project="fluentinterface" project="fluentinterface"
file="/fluentinterface/src/main/java/com/iluwatar/fluentinterface/fluentiterable/FluentIterable.java" binary="false" file="/fluentinterface/src/main/java/com/iluwatar/fluentinterface/fluentiterable/core/FluentIterable.java"
corner="BOTTOM_RIGHT"> binary="false" corner="BOTTOM_RIGHT">
<position height="-1" width="-1" x="794" y="55"/> <position height="-1" width="-1" x="794" y="55"/>
<display autosize="true" stereotype="true" package="true" initial-value="false" signature="true" <display autosize="true" stereotype="true" package="true" initial-value="false" signature="true"
sort-features="false" accessors="true" visibility="true"> sort-features="false" accessors="true" visibility="true">
@ -64,16 +64,16 @@
</display> </display>
</interface> </interface>
<dependency id="7"> <dependency id="7">
<end type="SOURCE" refId="3"/> <end type="SOURCE" refId="1"/>
<end type="TARGET" refId="5"/> <end type="TARGET" refId="4"/>
</dependency> </dependency>
<dependency id="8"> <dependency id="8">
<end type="SOURCE" refId="1"/> <end type="SOURCE" refId="1"/>
<end type="TARGET" refId="3"/> <end type="TARGET" refId="3"/>
</dependency> </dependency>
<dependency id="9"> <dependency id="9">
<end type="SOURCE" refId="1"/> <end type="SOURCE" refId="3"/>
<end type="TARGET" refId="4"/> <end type="TARGET" refId="5"/>
</dependency> </dependency>
<realization id="10"> <realization id="10">
<end type="SOURCE" refId="2"/> <end type="SOURCE" refId="2"/>
@ -83,14 +83,14 @@
<end type="SOURCE" refId="3"/> <end type="SOURCE" refId="3"/>
<end type="TARGET" refId="4"/> <end type="TARGET" refId="4"/>
</realization> </realization>
<dependency id="12"> <generalization id="12">
<end type="SOURCE" refId="1"/>
<end type="TARGET" refId="2"/>
</dependency>
<generalization id="13">
<end type="SOURCE" refId="4"/> <end type="SOURCE" refId="4"/>
<end type="TARGET" refId="6"/> <end type="TARGET" refId="6"/>
</generalization> </generalization>
<dependency id="13">
<end type="SOURCE" refId="1"/>
<end type="TARGET" refId="2"/>
</dependency>
<classifier-display autosize="true" stereotype="true" package="true" initial-value="true" signature="true" <classifier-display autosize="true" stereotype="true" package="true" initial-value="true" signature="true"
sort-features="false" accessors="true" visibility="true"> sort-features="false" accessors="true" visibility="true">
<attributes public="true" package="true" protected="true" private="true" static="true"/> <attributes public="true" package="true" protected="true" private="true" static="true"/>

View File

@ -23,8 +23,8 @@
<artifactId>urm-maven-plugin</artifactId> <artifactId>urm-maven-plugin</artifactId>
<configuration> <configuration>
<packages> <packages>
<param>com.iluwatar.fluentinterface</param> <param>com.iluwatar.fluentinterface.app</param>
<param>com.iluwatar.fluentinterface.fluentiterable</param> <param>com.iluwatar.fluentinterface.fluentiterable.core</param>
<param>com.iluwatar.fluentinterface.fluentiterable.lazy</param> <param>com.iluwatar.fluentinterface.fluentiterable.lazy</param>
<param>com.iluwatar.fluentinterface.fluentiterable.simple</param> <param>com.iluwatar.fluentinterface.fluentiterable.simple</param>
</packages> </packages>

View File

@ -1,6 +1,6 @@
package com.iluwatar.fluentinterface.app; package com.iluwatar.fluentinterface.app;
import com.iluwatar.fluentinterface.fluentiterable.FluentIterable; import com.iluwatar.fluentinterface.fluentiterable.core.FluentIterable;
import com.iluwatar.fluentinterface.fluentiterable.lazy.LazyFluentIterable; import com.iluwatar.fluentinterface.fluentiterable.lazy.LazyFluentIterable;
import com.iluwatar.fluentinterface.fluentiterable.simple.SimpleFluentIterable; import com.iluwatar.fluentinterface.fluentiterable.simple.SimpleFluentIterable;

View File

@ -1,4 +1,4 @@
package com.iluwatar.fluentinterface.fluentiterable; package com.iluwatar.fluentinterface.fluentiterable.core;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Iterator; import java.util.Iterator;

View File

@ -7,7 +7,7 @@ import java.util.Optional;
import java.util.function.Function; import java.util.function.Function;
import java.util.function.Predicate; import java.util.function.Predicate;
import com.iluwatar.fluentinterface.fluentiterable.FluentIterable; import com.iluwatar.fluentinterface.fluentiterable.core.FluentIterable;
/** /**
* This is a lazy implementation of the FluentIterable interface. It evaluates all chained * This is a lazy implementation of the FluentIterable interface. It evaluates all chained

View File

@ -1,12 +1,12 @@
package com.iluwatar.fluentinterface.fluentiterable.simple; package com.iluwatar.fluentinterface.fluentiterable.simple;
import com.iluwatar.fluentinterface.fluentiterable.FluentIterable;
import java.util.*; import java.util.*;
import java.util.function.Consumer; import java.util.function.Consumer;
import java.util.function.Function; import java.util.function.Function;
import java.util.function.Predicate; import java.util.function.Predicate;
import com.iluwatar.fluentinterface.fluentiterable.core.FluentIterable;
/** /**
* This is a simple implementation of the FluentIterable interface. It evaluates all chained * This is a simple implementation of the FluentIterable interface. It evaluates all chained
* operations eagerly. This implementation would be costly to be utilized in real applications. * operations eagerly. This implementation would be costly to be utilized in real applications.