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

View File

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

View File

@ -1,6 +1,6 @@
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.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.Iterator;

View File

@ -7,7 +7,7 @@ import java.util.Optional;
import java.util.function.Function;
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

View File

@ -1,12 +1,12 @@
package com.iluwatar.fluentinterface.fluentiterable.simple;
import com.iluwatar.fluentinterface.fluentiterable.FluentIterable;
import java.util.*;
import java.util.function.Consumer;
import java.util.function.Function;
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
* operations eagerly. This implementation would be costly to be utilized in real applications.