SHL-44 - Diagonalize DSM matrix
This commit is contained in:
@@ -22,6 +22,7 @@ import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import org.springframework.roo.shell.event.AbstractShellStatusPublisher;
|
||||
import org.springframework.roo.shell.event.ParseResult;
|
||||
import org.springframework.roo.shell.event.ShellStatus;
|
||||
import org.springframework.roo.shell.event.ShellStatus.Status;
|
||||
import org.springframework.roo.support.logging.HandlerUtils;
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
package org.springframework.roo.shell;
|
||||
|
||||
import org.springframework.roo.shell.event.ParseResult;
|
||||
|
||||
/**
|
||||
* Strategy interface to permit the controlled execution of methods.
|
||||
*
|
||||
|
||||
@@ -2,6 +2,8 @@ package org.springframework.roo.shell;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.springframework.roo.shell.event.ParseResult;
|
||||
|
||||
/**
|
||||
* Interface for {@link SimpleParser}.
|
||||
*
|
||||
|
||||
@@ -28,6 +28,7 @@ import java.util.regex.Pattern;
|
||||
import javax.xml.parsers.DocumentBuilder;
|
||||
import javax.xml.transform.Transformer;
|
||||
|
||||
import org.springframework.roo.shell.event.ParseResult;
|
||||
import org.springframework.roo.support.logging.HandlerUtils;
|
||||
import org.springframework.roo.support.util.Assert;
|
||||
import org.springframework.roo.support.util.CollectionUtils;
|
||||
|
||||
@@ -3,7 +3,6 @@ package org.springframework.roo.shell.event;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.CopyOnWriteArraySet;
|
||||
|
||||
import org.springframework.roo.shell.ParseResult;
|
||||
import org.springframework.roo.shell.event.ShellStatus.Status;
|
||||
import org.springframework.roo.support.util.Assert;
|
||||
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
package org.springframework.roo.shell;
|
||||
package org.springframework.roo.shell.event;
|
||||
|
||||
import java.lang.reflect.Method;
|
||||
import java.util.Arrays;
|
||||
|
||||
import org.springframework.roo.shell.Converter;
|
||||
import org.springframework.roo.support.style.ToStringCreator;
|
||||
import org.springframework.roo.support.util.Assert;
|
||||
import org.springframework.roo.support.util.StringUtils;
|
||||
@@ -1,6 +1,5 @@
|
||||
package org.springframework.roo.shell.event;
|
||||
|
||||
import org.springframework.roo.shell.ParseResult;
|
||||
|
||||
/**
|
||||
* Represents the different states that a shell can legally be in.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.springframework.roo.support.util;
|
||||
package org.springframework.roo.support.logging;
|
||||
|
||||
import java.io.BufferedInputStream;
|
||||
import java.io.InputStream;
|
||||
@@ -6,7 +6,8 @@ import java.io.InputStreamReader;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import org.springframework.roo.support.logging.HandlerUtils;
|
||||
import org.springframework.roo.support.util.FileCopyUtils;
|
||||
import org.springframework.roo.support.util.IOUtils;
|
||||
|
||||
/**
|
||||
* Retrieves text files from the classloader and displays them on-screen.
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.springframework.roo.support.ant;
|
||||
package org.springframework.roo.support.util;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
package org.springframework.roo.support.ant;
|
||||
package org.springframework.roo.support.util;
|
||||
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import org.springframework.roo.support.util.Assert;
|
||||
import org.springframework.roo.support.util.StringUtils;
|
||||
|
||||
/**
|
||||
* PathMatcher implementation for Ant-style path patterns.
|
||||
@@ -9,8 +9,6 @@ import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
import org.springframework.roo.support.ant.AntPathMatcher;
|
||||
import org.springframework.roo.support.ant.PathMatcher;
|
||||
|
||||
/**
|
||||
* Utilities for handling {@link File} instances.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.springframework.roo.support.ant;
|
||||
package org.springframework.roo.support.util;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
package org.springframework.shell;
|
||||
|
||||
import org.springframework.roo.shell.CommandMarker;
|
||||
import org.springframework.roo.shell.ParseResult;
|
||||
import org.springframework.roo.shell.event.ParseResult;
|
||||
|
||||
/**
|
||||
* Extension interface allowing command provider to be called
|
||||
|
||||
@@ -2,7 +2,7 @@ package org.springframework.shell;
|
||||
|
||||
import org.springframework.roo.shell.CommandMarker;
|
||||
import org.springframework.roo.shell.ExecutionStrategy;
|
||||
import org.springframework.roo.shell.ParseResult;
|
||||
import org.springframework.roo.shell.event.ParseResult;
|
||||
import org.springframework.roo.support.util.Assert;
|
||||
import org.springframework.roo.support.util.ReflectionUtils;
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ package org.springframework.shell;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.springframework.roo.shell.ParseResult;
|
||||
import org.springframework.roo.shell.event.ParseResult;
|
||||
import org.springframework.util.ReflectionUtils;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
Reference in New Issue
Block a user