Move to maven components module
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114584 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
target
|
||||
velocity.log
|
||||
maven.log
|
||||
.classpath
|
||||
.project
|
||||
@@ -1,30 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<project>
|
||||
<pomVersion>3</pomVersion>
|
||||
<groupId>maven</groupId>
|
||||
<id>surefire-runner</id>
|
||||
<artifactId>surefire-runner</artifactId>
|
||||
<name>Surefire Test Runner</name>
|
||||
<currentVersion>1.0</currentVersion>
|
||||
<description/>
|
||||
<shortDescription>Run JUnit tests</shortDescription>
|
||||
<url>http://maven.apache.org/reference/plugins/surefire-runner</url>
|
||||
<siteDirectory>/www/maven.apache.org/reference/plugins/surefire-runner</siteDirectory>
|
||||
<repository>
|
||||
<connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:maven/src/plugins-build/surefire-runner</connection>
|
||||
<url>http://cvs.apache.org/viewcvs/maven/src/plugins-build/surefire-runner</url>
|
||||
</repository>
|
||||
<developers>
|
||||
</developers>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<sourceDirectory>src/main</sourceDirectory>
|
||||
</build>
|
||||
</project>
|
||||
@@ -1,368 +0,0 @@
|
||||
package org.apache.maven.test;
|
||||
|
||||
import junit.framework.Test;
|
||||
import junit.framework.TestCase;
|
||||
import junit.framework.TestResult;
|
||||
|
||||
import java.io.PrintWriter;
|
||||
import java.io.StringWriter;
|
||||
import java.lang.reflect.Constructor;
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
import java.lang.reflect.Modifier;
|
||||
import java.util.Enumeration;
|
||||
import java.util.Vector;
|
||||
|
||||
/**
|
||||
* A <code>TestSuite</code> is a <code>Composite</code> of Tests.
|
||||
* It runs a collection of test cases. Here is an example using
|
||||
* the dynamic test definition.
|
||||
* <pre>
|
||||
* TestSuite suite= new TestSuite();
|
||||
* suite.addTest(new MathTest("testAdd"));
|
||||
* suite.addTest(new MathTest("testDivideByZero"));
|
||||
* </pre>
|
||||
* Alternatively, a TestSuite can extract the tests to be run automatically.
|
||||
* To do so you pass the class of your TestCase class to the
|
||||
* TestSuite constructor.
|
||||
* <pre>
|
||||
* TestSuite suite= new TestSuite(MathTest.class);
|
||||
* </pre>
|
||||
* This constructor creates a suite with all the methods
|
||||
* starting with "test" that take no arguments.
|
||||
*
|
||||
* @see junit.framework.Test
|
||||
*/
|
||||
public class MavenJUnitTestSuite
|
||||
implements Test
|
||||
{
|
||||
private Vector fTests = new Vector( 10 );
|
||||
|
||||
private String fName;
|
||||
|
||||
private Class junitTest = null;
|
||||
|
||||
private Class testResultClass = null;
|
||||
|
||||
/**
|
||||
* Constructs an empty TestSuite.
|
||||
*/
|
||||
public MavenJUnitTestSuite()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs a TestSuite from the given class with the given name.
|
||||
*/
|
||||
public MavenJUnitTestSuite( Class theClass )
|
||||
{
|
||||
this( theClass, ClassLoader.getSystemClassLoader() );
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs a TestSuite from the given class. Adds all the methods
|
||||
* starting with "test" as test cases to the suite.
|
||||
* Parts of this method was written at 2337 meters in the H<>ffih<69>tte,
|
||||
* Kanton Uri
|
||||
*/
|
||||
public MavenJUnitTestSuite( final Class theClass, ClassLoader classLoader )
|
||||
{
|
||||
try
|
||||
{
|
||||
junitTest = classLoader.loadClass( "junit.framework.Test" );
|
||||
|
||||
testResultClass = classLoader.loadClass( "junit.framework.TestResult" );
|
||||
}
|
||||
catch ( ClassNotFoundException e )
|
||||
{
|
||||
}
|
||||
|
||||
fName = theClass.getName();
|
||||
try
|
||||
{
|
||||
getTestConstructor( theClass ); // Avoid generating multiple error messages
|
||||
}
|
||||
catch ( NoSuchMethodException e )
|
||||
{
|
||||
addTest( warning( "Class " + theClass.getName() + " has no public constructor TestCase(String name) or TestCase()" ) );
|
||||
return;
|
||||
}
|
||||
|
||||
if ( !Modifier.isPublic( theClass.getModifiers() ) )
|
||||
{
|
||||
addTest( warning( "Class " + theClass.getName() + " is not public" ) );
|
||||
return;
|
||||
}
|
||||
|
||||
Class superClass = theClass;
|
||||
Vector names = new Vector();
|
||||
|
||||
while ( junitTest.isAssignableFrom( superClass ) )
|
||||
{
|
||||
Method[] methods = superClass.getDeclaredMethods();
|
||||
for ( int i = 0; i < methods.length; i++ )
|
||||
{
|
||||
addTestMethod( methods[i], names, theClass );
|
||||
}
|
||||
superClass = superClass.getSuperclass();
|
||||
}
|
||||
|
||||
if ( fTests.size() == 0 )
|
||||
{
|
||||
addTest( warning( "No tests found in " + theClass.getName() ) );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs an empty TestSuite.
|
||||
*/
|
||||
public MavenJUnitTestSuite( String name )
|
||||
{
|
||||
setName( name );
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a test to the suite.
|
||||
*/
|
||||
public void addTest( Object test )
|
||||
{
|
||||
fTests.addElement( test );
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds the tests from the given class to the suite
|
||||
*/
|
||||
public void addTestSuite( Class testClass )
|
||||
{
|
||||
addTest( new MavenJUnitTestSuite( testClass ) );
|
||||
}
|
||||
|
||||
private void addTestMethod( Method m, Vector names, Class theClass )
|
||||
{
|
||||
String name = m.getName();
|
||||
|
||||
if ( names.contains( name ) )
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ( !isPublicTestMethod( m ) )
|
||||
{
|
||||
if ( isTestMethod( m ) )
|
||||
{
|
||||
addTest( warning( "Test method isn't public: " + m.getName() ) );
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
names.addElement( name );
|
||||
|
||||
addTest( createTest( theClass, name ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* ...as the moon sets over the early morning Merlin, Oregon
|
||||
* mountains, our intrepid adventurers type...
|
||||
*/
|
||||
static public Object createTest( Class theClass, String name )
|
||||
{
|
||||
Constructor constructor;
|
||||
|
||||
try
|
||||
{
|
||||
constructor = getTestConstructor( theClass );
|
||||
}
|
||||
catch ( NoSuchMethodException e )
|
||||
{
|
||||
return warning( "Class " + theClass.getName() + " has no public constructor TestCase(String name) or TestCase()" );
|
||||
}
|
||||
Object test;
|
||||
try
|
||||
{
|
||||
if ( constructor.getParameterTypes().length == 0 )
|
||||
{
|
||||
test = constructor.newInstance( new Object[0] );
|
||||
|
||||
if ( test instanceof TestCase )
|
||||
{
|
||||
( (TestCase) test ).setName( name );
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
test = constructor.newInstance( new Object[]{name} );
|
||||
}
|
||||
}
|
||||
catch ( InstantiationException e )
|
||||
{
|
||||
return ( warning( "Cannot instantiate test case: " + name + " (" + exceptionToString( e ) + ")" ) );
|
||||
}
|
||||
catch ( InvocationTargetException e )
|
||||
{
|
||||
return ( warning( "Exception in constructor: " + name + " (" + exceptionToString( e.getTargetException() ) + ")" ) );
|
||||
}
|
||||
catch ( IllegalAccessException e )
|
||||
{
|
||||
return ( warning( "Cannot access test case: " + name + " (" + exceptionToString( e ) + ")" ) );
|
||||
}
|
||||
|
||||
return test;
|
||||
}
|
||||
|
||||
/**
|
||||
* Converts the stack trace into a string
|
||||
*/
|
||||
private static String exceptionToString( Throwable t )
|
||||
{
|
||||
StringWriter stringWriter = new StringWriter();
|
||||
PrintWriter writer = new PrintWriter( stringWriter );
|
||||
t.printStackTrace( writer );
|
||||
return stringWriter.toString();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Counts the number of test cases that will be run by this test.
|
||||
*/
|
||||
public int countTestCases()
|
||||
{
|
||||
int count = 0;
|
||||
for ( Enumeration e = tests(); e.hasMoreElements(); )
|
||||
{
|
||||
Test test = (Test) e.nextElement();
|
||||
count = count + test.countTestCases();
|
||||
}
|
||||
return count;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets a constructor which takes a single String as
|
||||
* its argument or a no arg constructor.
|
||||
*/
|
||||
public static Constructor getTestConstructor( Class theClass )
|
||||
throws NoSuchMethodException
|
||||
{
|
||||
Class[] args = {String.class};
|
||||
|
||||
try
|
||||
{
|
||||
return theClass.getConstructor( args );
|
||||
}
|
||||
catch ( NoSuchMethodException e )
|
||||
{
|
||||
// fall through
|
||||
}
|
||||
return theClass.getConstructor( new Class[0] );
|
||||
}
|
||||
|
||||
private boolean isPublicTestMethod( Method m )
|
||||
{
|
||||
return isTestMethod( m ) && Modifier.isPublic( m.getModifiers() );
|
||||
}
|
||||
|
||||
private boolean isTestMethod( Method m )
|
||||
{
|
||||
String name = m.getName();
|
||||
Class[] parameters = m.getParameterTypes();
|
||||
Class returnType = m.getReturnType();
|
||||
return parameters.length == 0 && name.startsWith( "test" ) && returnType.equals( Void.TYPE );
|
||||
}
|
||||
|
||||
/**
|
||||
* Runs the tests and collects their result in a TestResult.
|
||||
*/
|
||||
public void run( TestResult result )
|
||||
{
|
||||
for ( Enumeration e = tests(); e.hasMoreElements(); )
|
||||
{
|
||||
if ( result.shouldStop() )
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
Object test = e.nextElement();
|
||||
|
||||
runTest( test, result );
|
||||
}
|
||||
}
|
||||
|
||||
public void runTest( Object test, TestResult result )
|
||||
{
|
||||
try
|
||||
{
|
||||
Method m = test.getClass().getMethod( "run", new Class[] { testResultClass } );
|
||||
|
||||
m.invoke( test, new Object[] { result } );
|
||||
}
|
||||
catch ( Exception e )
|
||||
{
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the test at the given index
|
||||
*/
|
||||
public Test testAt( int index )
|
||||
{
|
||||
return (Test) fTests.elementAt( index );
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the number of tests in this suite
|
||||
*/
|
||||
public int testCount()
|
||||
{
|
||||
return fTests.size();
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the tests as an enumeration
|
||||
*/
|
||||
public Enumeration tests()
|
||||
{
|
||||
return fTests.elements();
|
||||
}
|
||||
|
||||
/**
|
||||
*/
|
||||
public String toString()
|
||||
{
|
||||
if ( getName() != null )
|
||||
return getName();
|
||||
return super.toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the name of the suite.
|
||||
* @param name The name to set
|
||||
*/
|
||||
public void setName( String name )
|
||||
{
|
||||
fName = name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the name of the suite. Not all
|
||||
* test suites have a name and this method
|
||||
* can return null.
|
||||
*/
|
||||
public String getName()
|
||||
{
|
||||
return fName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a test which will fail and log a warning message.
|
||||
*/
|
||||
private static Test warning( final String message )
|
||||
{
|
||||
return new TestCase( "warning" )
|
||||
{
|
||||
protected void runTest()
|
||||
{
|
||||
fail( message );
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
package org.apache.maven.test;
|
||||
|
||||
import junit.runner.TestSuiteLoader;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @author <a href="mailto:jason@maven.org">Jason van Zyl</a>
|
||||
*
|
||||
* @version $Id: MavenTestSuiteLoader.java,v 1.1 2004/01/09 16:23:01 jvanzyl Exp $
|
||||
*/
|
||||
public class MavenTestSuiteLoader
|
||||
implements TestSuiteLoader
|
||||
{
|
||||
private ClassLoader classLoader;
|
||||
|
||||
public MavenTestSuiteLoader( ClassLoader classLoader )
|
||||
{
|
||||
this.classLoader = classLoader;
|
||||
}
|
||||
|
||||
public Class load( String className )
|
||||
throws ClassNotFoundException
|
||||
{
|
||||
return classLoader.loadClass( className );
|
||||
}
|
||||
|
||||
public Class reload( Class clazz )
|
||||
throws ClassNotFoundException
|
||||
{
|
||||
return clazz;
|
||||
}
|
||||
}
|
||||
@@ -1,143 +0,0 @@
|
||||
package org.apache.maven.test;
|
||||
|
||||
import java.io.PrintStream;
|
||||
import java.text.NumberFormat;
|
||||
import java.util.Enumeration;
|
||||
|
||||
import junit.framework.AssertionFailedError;
|
||||
import junit.framework.Test;
|
||||
import junit.framework.TestFailure;
|
||||
import junit.framework.TestListener;
|
||||
import junit.framework.TestResult;
|
||||
import junit.runner.BaseTestRunner;
|
||||
|
||||
public class ResultPrinter implements TestListener
|
||||
{
|
||||
PrintStream fWriter;
|
||||
int fColumn = 0;
|
||||
|
||||
public ResultPrinter( PrintStream writer )
|
||||
{
|
||||
fWriter = writer;
|
||||
}
|
||||
|
||||
synchronized void print( TestResult result, long runTime, String testName )
|
||||
{
|
||||
//printErrors( result );
|
||||
//printFailures( result );
|
||||
printFooter( result, runTime, testName );
|
||||
}
|
||||
|
||||
protected void printErrors( TestResult result )
|
||||
{
|
||||
printDefects( result.errors(), result.errorCount(), "error" );
|
||||
}
|
||||
|
||||
protected void printFailures( TestResult result )
|
||||
{
|
||||
printDefects( result.failures(), result.failureCount(), "failure" );
|
||||
}
|
||||
|
||||
protected void printDefects( Enumeration booBoos, int count, String type )
|
||||
{
|
||||
if ( count == 0 )
|
||||
{
|
||||
return;
|
||||
}
|
||||
if ( count == 1 )
|
||||
{
|
||||
getWriter().println( "There was " + count + " " + type + ":" );
|
||||
}
|
||||
else
|
||||
{
|
||||
getWriter().println( "There were " + count + " " + type + "s:" );
|
||||
}
|
||||
|
||||
for ( int i = 1; booBoos.hasMoreElements(); i++ )
|
||||
{
|
||||
printDefect( (TestFailure) booBoos.nextElement(), i );
|
||||
}
|
||||
}
|
||||
|
||||
public void printDefect( TestFailure booBoo, int count )
|
||||
{ // only public for testing purposes
|
||||
printDefectHeader( booBoo, count );
|
||||
printDefectTrace( booBoo );
|
||||
}
|
||||
|
||||
protected void printDefectHeader( TestFailure booBoo, int count )
|
||||
{
|
||||
// I feel like making this a println, then adding a line giving the throwable a chance to print something
|
||||
// before we get to the stack trace.
|
||||
getWriter().print( count + ") " + booBoo.failedTest() );
|
||||
}
|
||||
|
||||
protected void printDefectTrace( TestFailure booBoo )
|
||||
{
|
||||
getWriter().print( BaseTestRunner.getFilteredTrace( booBoo.trace() ) );
|
||||
}
|
||||
|
||||
protected void printFooter( TestResult result, long runtime, String testName )
|
||||
{
|
||||
getWriter().println( " [funit] Running " + testName );
|
||||
|
||||
getWriter().println( " [funit] Tests run: " + result.runCount() +
|
||||
", Failures: " + result.failureCount() +
|
||||
", Errors: " + result.errorCount() +
|
||||
", Time elapsed: " + elapsedTimeAsString( runtime ) + " sec" );
|
||||
|
||||
printErrors( result );
|
||||
printFailures( result );
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the formatted string of the elapsed time.
|
||||
* Duplicated from BaseTestRunner. Fix it.
|
||||
*/
|
||||
protected String elapsedTimeAsString( long runTime )
|
||||
{
|
||||
return NumberFormat.getInstance().format( (double) runTime / 1000 );
|
||||
}
|
||||
|
||||
public PrintStream getWriter()
|
||||
{
|
||||
return fWriter;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see junit.framework.TestListener#addError(Test, Throwable)
|
||||
*/
|
||||
public void addError( Test test, Throwable t )
|
||||
{
|
||||
getWriter().print( "E" );
|
||||
}
|
||||
|
||||
/**
|
||||
* @see junit.framework.TestListener#addFailure(Test, AssertionFailedError)
|
||||
*/
|
||||
public void addFailure( Test test, AssertionFailedError t )
|
||||
{
|
||||
getWriter().print( "F" );
|
||||
}
|
||||
|
||||
/**
|
||||
* @see junit.framework.TestListener#endTest(Test)
|
||||
*/
|
||||
public void endTest( Test test )
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @see junit.framework.TestListener#startTest(Test)
|
||||
*/
|
||||
public void startTest( Test test )
|
||||
{
|
||||
getWriter().print( "." );
|
||||
if ( fColumn++ >= 40 )
|
||||
{
|
||||
getWriter().println();
|
||||
fColumn = 0;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,149 +0,0 @@
|
||||
package org.apache.maven.test;
|
||||
|
||||
import junit.framework.Test;
|
||||
import junit.framework.TestResult;
|
||||
import junit.framework.TestSuite;
|
||||
import junit.runner.BaseTestRunner;
|
||||
import junit.runner.TestSuiteLoader;
|
||||
|
||||
import java.io.PrintStream;
|
||||
|
||||
public class TestRunner
|
||||
extends BaseTestRunner
|
||||
{
|
||||
private ResultPrinter resultPrinter;
|
||||
|
||||
public static final int SUCCESS_EXIT = 0;
|
||||
|
||||
public static final int FAILURE_EXIT = 1;
|
||||
|
||||
public static final int EXCEPTION_EXIT = 2;
|
||||
|
||||
private static final String FS = System.getProperty( "file.separator" );
|
||||
|
||||
public TestRunner()
|
||||
{
|
||||
this( System.out );
|
||||
}
|
||||
|
||||
public TestRunner( PrintStream writer )
|
||||
{
|
||||
this( new ResultPrinter( writer ) );
|
||||
}
|
||||
|
||||
public TestRunner( ResultPrinter printer )
|
||||
{
|
||||
resultPrinter = printer;
|
||||
}
|
||||
|
||||
private ClassLoader classLoader;
|
||||
|
||||
public void runTestClasses( ClassLoader classLoader, String[] tests )
|
||||
throws Exception
|
||||
{
|
||||
this.classLoader = classLoader;
|
||||
|
||||
String s;
|
||||
|
||||
for ( int i = 0; i < tests.length; i++ )
|
||||
{
|
||||
s = tests[i];
|
||||
|
||||
s = s.substring( 0, s.indexOf( "." ) );
|
||||
|
||||
s = s.replace( FS.charAt( 0 ), ".".charAt( 0 ) );
|
||||
|
||||
Class clazz = null;
|
||||
|
||||
try
|
||||
{
|
||||
clazz = classLoader.loadClass( s );
|
||||
}
|
||||
catch ( ClassNotFoundException e )
|
||||
{
|
||||
System.out.println( "Can't find className = " + s );
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
TestResult result = run( clazz, s );
|
||||
|
||||
if ( result.errorCount() > 0 || result.failureCount() > 0 )
|
||||
{
|
||||
failures = "true";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private String failures = "false";
|
||||
|
||||
public String failures()
|
||||
{
|
||||
return failures;
|
||||
}
|
||||
|
||||
public TestResult run( Class testClass, String testName )
|
||||
{
|
||||
return run( new TestSuite( testClass ), testName );
|
||||
|
||||
//return run( new MavenJUnitTestSuite( testClass, classLoader ), testName );
|
||||
}
|
||||
|
||||
public TestResult run( Test test, String testName )
|
||||
{
|
||||
TestRunner runner = new TestRunner();
|
||||
|
||||
return runner.doRun( test, testName );
|
||||
}
|
||||
|
||||
public TestSuiteLoader getLoader()
|
||||
{
|
||||
return new MavenTestSuiteLoader( classLoader );
|
||||
}
|
||||
|
||||
public void testFailed( int status, Test test, Throwable t )
|
||||
{
|
||||
}
|
||||
|
||||
public void testStarted( String testName )
|
||||
{
|
||||
}
|
||||
|
||||
public void testEnded( String testName )
|
||||
{
|
||||
}
|
||||
|
||||
protected TestResult createTestResult()
|
||||
{
|
||||
return new TestResult();
|
||||
}
|
||||
|
||||
public TestResult doRun( Test suite, String testName )
|
||||
{
|
||||
TestResult result = createTestResult();
|
||||
|
||||
long startTime = System.currentTimeMillis();
|
||||
|
||||
suite.run( result );
|
||||
|
||||
long endTime = System.currentTimeMillis();
|
||||
|
||||
long runTime = endTime - startTime;
|
||||
|
||||
resultPrinter.print( result, runTime, testName );
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
protected void runFailed( String message )
|
||||
{
|
||||
System.err.println( message );
|
||||
|
||||
System.exit( FAILURE_EXIT );
|
||||
}
|
||||
|
||||
public void setPrinter( ResultPrinter printer )
|
||||
{
|
||||
resultPrinter = printer;
|
||||
}
|
||||
}
|
||||
@@ -1,160 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<project version="3" relativePaths="false">
|
||||
<component version="2" name="ProjectRootManager">
|
||||
<jdk name="java version "1.4.2"">
|
||||
</jdk>
|
||||
<projectPath>
|
||||
<root type="composite">
|
||||
<root url="file://$PROJECT_DIR$" type="simple">
|
||||
</root>
|
||||
</root>
|
||||
</projectPath>
|
||||
<sourcePath>
|
||||
<root type="composite">
|
||||
<root url="file://$PROJECT_DIR$/src/main" type="simple">
|
||||
</root>
|
||||
<root rootType="sourcePath" name="java version "1.4.2"" type="jdk">
|
||||
</root>
|
||||
</root>
|
||||
</sourcePath>
|
||||
<classPath>
|
||||
<root type="composite">
|
||||
<root rootType="classPath" name="java version "1.4.2"" type="jdk">
|
||||
</root>
|
||||
<root type="output">
|
||||
</root>
|
||||
<root url="jar:///home/jvanzyl/maven-repo-local/junit/jars/junit-3.8.1.jar!/" type="simple">
|
||||
</root>
|
||||
</root>
|
||||
</classPath>
|
||||
<javadocPath>
|
||||
<root type="composite">
|
||||
<root rootType="javadocPath" name="java version "1.4.2"" type="jdk">
|
||||
</root>
|
||||
</root>
|
||||
</javadocPath>
|
||||
<assert_keyword enabled="no">
|
||||
</assert_keyword>
|
||||
</component>
|
||||
<component name="CompilerConfiguration">
|
||||
<option name="DEFAULT_COMPILER" value="Javac">
|
||||
</option>
|
||||
<option name="SYNCHRONIZE_OUTPUT_DIRECTORY" value="false">
|
||||
</option>
|
||||
<option name="DEFAULT_OUTPUT_PATH">
|
||||
</option>
|
||||
<option name="OUTPUT_MODE" value="single">
|
||||
</option>
|
||||
<resourceExtensions>
|
||||
<entry name=".+\.(properties|xml|html)">
|
||||
</entry>
|
||||
<entry name=".+\.(gif|png|jpeg)">
|
||||
</entry>
|
||||
</resourceExtensions>
|
||||
</component>
|
||||
<component name="JavacSettings">
|
||||
<option name="DEBUGGING_INFO" value="true">
|
||||
</option>
|
||||
<option name="GENERATE_NO_WARNINGS" value="false">
|
||||
</option>
|
||||
<option name="DEPRECATION" value="true">
|
||||
</option>
|
||||
<option name="ADDITIONAL_OPTIONS_STRING" value="">
|
||||
</option>
|
||||
<option name="MAXIMUM_HEAP_SIZE" value="128">
|
||||
</option>
|
||||
</component>
|
||||
<component name="JikesSettings">
|
||||
<option name="DEBUGGING_INFO" value="true">
|
||||
</option>
|
||||
<option name="DEPRECATION" value="true">
|
||||
</option>
|
||||
<option name="GENERATE_NO_WARNINGS" value="false">
|
||||
</option>
|
||||
<option name="GENERATE_MAKE_FILE_DEPENDENCIES" value="false">
|
||||
</option>
|
||||
<option name="DO_FULL_DEPENDENCE_CHECK" value="false">
|
||||
</option>
|
||||
<option name="IS_INCREMENTAL_MODE" value="false">
|
||||
</option>
|
||||
<option name="IS_EMACS_ERRORS_MODE" value="true">
|
||||
</option>
|
||||
<option name="ADDITIONAL_OPTIONS_STRING" value="">
|
||||
</option>
|
||||
<option name="MAXIMUM_HEAP_SIZE" value="128">
|
||||
</option>
|
||||
</component>
|
||||
<component name="AntConfiguration">
|
||||
<option name="IS_AUTOSCROLL_TO_SOURCE" value="false">
|
||||
</option>
|
||||
<option name="FILTER_TARGETS" value="false">
|
||||
</option>
|
||||
</component>
|
||||
<component name="CvsManager">
|
||||
</component>
|
||||
<component name="JavadocGenerationManager">
|
||||
<option name="OUTPUT_DIRECTORY">
|
||||
</option>
|
||||
<option name="OPTION_SCOPE" value="protected">
|
||||
</option>
|
||||
<option name="OPTION_HIERARCHY" value="false">
|
||||
</option>
|
||||
<option name="OPTION_NAVIGATOR" value="false">
|
||||
</option>
|
||||
<option name="OPTION_INDEX" value="false">
|
||||
</option>
|
||||
<option name="OPTION_SEPARATE_INDEX" value="false">
|
||||
</option>
|
||||
<option name="OPTION_USE_1_1" value="false">
|
||||
</option>
|
||||
<option name="OPTION_DOCUMENT_TAG_USE" value="false">
|
||||
</option>
|
||||
<option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false">
|
||||
</option>
|
||||
<option name="OPTION_DOCUMENT_TAG_VERSION" value="false">
|
||||
</option>
|
||||
<option name="OPTION_DOCUMENT_TAG_DEPRECATED" value="false">
|
||||
</option>
|
||||
<option name="OPTION_DEPRECATED_LIST" value="false">
|
||||
</option>
|
||||
<option name="OTHER_OPTIONS">
|
||||
</option>
|
||||
<option name="HEAP_SIZE">
|
||||
</option>
|
||||
<option name="OPEN_IN_BROWSER" value="false">
|
||||
</option>
|
||||
</component>
|
||||
<component name="WebManager">
|
||||
<OPTION enabled="false">
|
||||
</OPTION>
|
||||
</component>
|
||||
<component name="WebRootContainer">
|
||||
</component>
|
||||
<component enabled="false" name="EjbManager">
|
||||
</component>
|
||||
<component name="JUnitProjectSettings">
|
||||
<option name="TEST_RUNNER" value="UI">
|
||||
</option>
|
||||
</component>
|
||||
<component name="EntryPointsManager">
|
||||
<entry_points>
|
||||
</entry_points>
|
||||
</component>
|
||||
<component name="EjbActionsConfiguration">
|
||||
<option name="NEW_MESSAGE_BEAN_LAST_PACKAGE" value="">
|
||||
</option>
|
||||
<option name="NEW_ENTITY_BEAN_LAST_PACKAGE" value="">
|
||||
</option>
|
||||
<option name="NEW_SESSION_BEAN_LAST_PACKAGE" value="">
|
||||
</option>
|
||||
</component>
|
||||
<component name="ExportToHTMLSettings">
|
||||
<option name="PRINT_LINE_NUMBERS" value="false">
|
||||
</option>
|
||||
<option name="OPEN_IN_BROWSER" value="false">
|
||||
</option>
|
||||
<option name="OUTPUT_DIRECTORY">
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
||||
@@ -1,704 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<project version="3" relativePaths="false">
|
||||
<component name="FileEditorManager">
|
||||
<history>
|
||||
</history>
|
||||
<open_files>
|
||||
</open_files>
|
||||
</component>
|
||||
<component name="ToolWindowManager">
|
||||
<frame height="1004" x="1" width="1278" extended-state="0" y="1">
|
||||
</frame>
|
||||
<editor active="true">
|
||||
</editor>
|
||||
<layout>
|
||||
<window_info id="Messages" auto_hide="true" order="-1" visible="false" active="false" anchor="bottom" weight="0.33" internal_type="sliding" type="sliding">
|
||||
</window_info>
|
||||
<window_info id="Run" auto_hide="false" order="2" visible="false" active="false" anchor="bottom" weight="0.33" internal_type="docked" type="docked">
|
||||
</window_info>
|
||||
<window_info id="Find" auto_hide="false" order="1" visible="false" active="false" anchor="bottom" weight="0.33" internal_type="docked" type="docked">
|
||||
</window_info>
|
||||
<window_info id="Project" auto_hide="false" order="0" visible="false" active="false" anchor="left" weight="0.25" internal_type="docked" type="docked">
|
||||
</window_info>
|
||||
<window_info id="Commander" auto_hide="false" order="0" visible="false" active="false" anchor="right" weight="0.4" internal_type="sliding" type="sliding">
|
||||
</window_info>
|
||||
<window_info id="TODO" auto_hide="false" order="6" visible="false" active="false" anchor="bottom" weight="0.33" internal_type="docked" type="docked">
|
||||
</window_info>
|
||||
<window_info id="Hierarchy" auto_hide="false" order="2" visible="false" active="false" anchor="right" weight="0.25" internal_type="docked" type="docked">
|
||||
</window_info>
|
||||
<window_info id="Ant Build" auto_hide="false" order="1" visible="false" active="false" anchor="right" weight="0.25" internal_type="docked" type="docked">
|
||||
</window_info>
|
||||
<window_info id="Inspection" auto_hide="false" order="5" visible="false" active="false" anchor="bottom" weight="0.4" internal_type="docked" type="docked">
|
||||
</window_info>
|
||||
<window_info id="Structure" auto_hide="false" order="1" visible="false" active="false" anchor="left" weight="0.25" internal_type="docked" type="docked">
|
||||
</window_info>
|
||||
<window_info id="Debug" auto_hide="false" order="3" visible="false" active="false" anchor="bottom" weight="0.4" internal_type="docked" type="docked">
|
||||
</window_info>
|
||||
<window_info id="EJB" auto_hide="false" order="3" visible="false" active="false" anchor="left" weight="0.25" internal_type="docked" type="docked">
|
||||
</window_info>
|
||||
<window_info id="Message" auto_hide="false" order="0" visible="false" active="false" anchor="bottom" weight="0.33" internal_type="docked" type="docked">
|
||||
</window_info>
|
||||
<window_info id="Web" auto_hide="false" order="2" visible="false" active="false" anchor="left" weight="0.25" internal_type="docked" type="docked">
|
||||
</window_info>
|
||||
<window_info id="Cvs" auto_hide="false" order="4" visible="false" active="false" anchor="bottom" weight="0.25" internal_type="docked" type="docked">
|
||||
</window_info>
|
||||
</layout>
|
||||
</component>
|
||||
<component name="Debugger">
|
||||
<line_breakpoints>
|
||||
</line_breakpoints>
|
||||
<exception_breakpoints>
|
||||
<breakpoint_any>
|
||||
<option name="NOTIFY_CAUGHT" value="true">
|
||||
</option>
|
||||
<option name="NOTIFY_UNCAUGHT" value="true">
|
||||
</option>
|
||||
<option name="ENABLED" value="false">
|
||||
</option>
|
||||
<option name="SUSPEND_VM" value="true">
|
||||
</option>
|
||||
<option name="COUNT_FILTER_ENABLED" value="false">
|
||||
</option>
|
||||
<option name="COUNT_FILTER" value="0">
|
||||
</option>
|
||||
<option name="CONDITION_ENABLED" value="false">
|
||||
</option>
|
||||
<option name="CONDITION">
|
||||
</option>
|
||||
<option name="LOG_ENABLED" value="false">
|
||||
</option>
|
||||
<option name="LOG_EXPRESSION_ENABLED" value="false">
|
||||
</option>
|
||||
<option name="LOG_MESSAGE">
|
||||
</option>
|
||||
<option name="CLASS_FILTERS_ENABLED" value="false">
|
||||
</option>
|
||||
<option name="INVERSE_CLASS_FILLTERS" value="false">
|
||||
</option>
|
||||
<option name="SUSPEND_POLICY" value="SuspendAll">
|
||||
</option>
|
||||
</breakpoint_any>
|
||||
</exception_breakpoints>
|
||||
<field_breakpoints>
|
||||
</field_breakpoints>
|
||||
<method_breakpoints>
|
||||
</method_breakpoints>
|
||||
</component>
|
||||
<component name="DebuggerManager">
|
||||
</component>
|
||||
<component name="DebuggerSettings">
|
||||
<option name="TRACING_FILTERS_ENABLED" value="true">
|
||||
</option>
|
||||
<option name="VALUE_LOOKUP_DELAY" value="700">
|
||||
</option>
|
||||
<option name="DEBUGGER_TRANSPORT" value="0">
|
||||
</option>
|
||||
<option name="FORCE_CLASSIC_VM" value="true">
|
||||
</option>
|
||||
<option name="HIDE_DEBUGGER_ON_PROCESS_TERMINATION" value="false">
|
||||
</option>
|
||||
<option name="SKIP_SYNTHETIC_METHODS" value="true">
|
||||
</option>
|
||||
<option name="SKIP_CONSTRUCTORS" value="false">
|
||||
</option>
|
||||
<option name="STEP_THREAD_SUSPEND_POLICY" value="SuspendThread">
|
||||
</option>
|
||||
<default_breakpoint_settings>
|
||||
<option name="NOTIFY_CAUGHT" value="true">
|
||||
</option>
|
||||
<option name="NOTIFY_UNCAUGHT" value="true">
|
||||
</option>
|
||||
<option name="WATCH_MODIFICATION" value="true">
|
||||
</option>
|
||||
<option name="WATCH_ACCESS" value="true">
|
||||
</option>
|
||||
<option name="WATCH_ENTRY" value="true">
|
||||
</option>
|
||||
<option name="WATCH_EXIT" value="true">
|
||||
</option>
|
||||
<option name="ENABLED" value="true">
|
||||
</option>
|
||||
<option name="SUSPEND_VM" value="true">
|
||||
</option>
|
||||
<option name="COUNT_FILTER_ENABLED" value="false">
|
||||
</option>
|
||||
<option name="COUNT_FILTER" value="0">
|
||||
</option>
|
||||
<option name="CONDITION_ENABLED" value="false">
|
||||
</option>
|
||||
<option name="CONDITION">
|
||||
</option>
|
||||
<option name="LOG_ENABLED" value="false">
|
||||
</option>
|
||||
<option name="LOG_EXPRESSION_ENABLED" value="false">
|
||||
</option>
|
||||
<option name="LOG_MESSAGE">
|
||||
</option>
|
||||
<option name="CLASS_FILTERS_ENABLED" value="false">
|
||||
</option>
|
||||
<option name="INVERSE_CLASS_FILLTERS" value="false">
|
||||
</option>
|
||||
<option name="SUSPEND_POLICY" value="SuspendAll">
|
||||
</option>
|
||||
</default_breakpoint_settings>
|
||||
<filter>
|
||||
<option name="PATTERN" value="com.sun.*">
|
||||
</option>
|
||||
<option name="ENABLED" value="true">
|
||||
</option>
|
||||
</filter>
|
||||
<filter>
|
||||
<option name="PATTERN" value="java.*">
|
||||
</option>
|
||||
<option name="ENABLED" value="true">
|
||||
</option>
|
||||
</filter>
|
||||
<filter>
|
||||
<option name="PATTERN" value="javax.*">
|
||||
</option>
|
||||
<option name="ENABLED" value="true">
|
||||
</option>
|
||||
</filter>
|
||||
<filter>
|
||||
<option name="PATTERN" value="org.omg.*">
|
||||
</option>
|
||||
<option name="ENABLED" value="true">
|
||||
</option>
|
||||
</filter>
|
||||
<filter>
|
||||
<option name="PATTERN" value="sun.*">
|
||||
</option>
|
||||
<option name="ENABLED" value="true">
|
||||
</option>
|
||||
</filter>
|
||||
<filter>
|
||||
<option name="PATTERN" value="junit.*">
|
||||
</option>
|
||||
<option name="ENABLED" value="true">
|
||||
</option>
|
||||
</filter>
|
||||
</component>
|
||||
<component name="CompilerWorkspaceConfiguration">
|
||||
<option name="COMPILE_IN_BACKGROUND" value="false">
|
||||
</option>
|
||||
<option name="AUTO_SHOW_ERRORS_IN_EDITOR" value="true">
|
||||
</option>
|
||||
</component>
|
||||
<component name="ErrorTreeViewConfiguration">
|
||||
<option name="IS_AUTOSCROLL_TO_SOURCE" value="false">
|
||||
</option>
|
||||
<option name="HIDE_WARNINGS" value="false">
|
||||
</option>
|
||||
</component>
|
||||
<component name="DaemonCodeAnalyzer">
|
||||
<disable_hints>
|
||||
</disable_hints>
|
||||
</component>
|
||||
<component name="StructureViewFactory">
|
||||
<option name="SORT_MODE" value="0">
|
||||
</option>
|
||||
<option name="GROUP_OVERRIDINGS" value="true">
|
||||
</option>
|
||||
<option name="GROUP_IMPLEMENTINGS" value="true">
|
||||
</option>
|
||||
<option name="AUTOSCROLL_MODE" value="true">
|
||||
</option>
|
||||
<option name="SHOW_METHODS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_FIELDS" value="true">
|
||||
</option>
|
||||
<option name="AUTOSCROLL_FROM_SOURCE" value="false">
|
||||
</option>
|
||||
<option name="GROUP_GETTERS_AND_SETTERS" value="true">
|
||||
</option>
|
||||
</component>
|
||||
<component name="CvsConfiguration">
|
||||
<Checkout>
|
||||
<option name="DATE_TAG" value="">
|
||||
</option>
|
||||
<option name="REVISION_TAG" value="">
|
||||
</option>
|
||||
<option name="PRUNE_EMPTY_DIRS" value="true">
|
||||
</option>
|
||||
<option name="RESET_STICKY_TAGS" value="false">
|
||||
</option>
|
||||
<option name="NON_RECURSIVE" value="false">
|
||||
</option>
|
||||
<option name="CREATE_WORKING_DIR" value="">
|
||||
</option>
|
||||
<option name="ADDITIONAL_OPTIONS" value="">
|
||||
</option>
|
||||
</Checkout>
|
||||
<Update>
|
||||
<option name="DATE_TAG" value="">
|
||||
</option>
|
||||
<option name="REVISION_TAG" value="">
|
||||
</option>
|
||||
<option name="PRUNE_EMPTY_DIRS" value="true">
|
||||
</option>
|
||||
<option name="RESET_STICKY_TAGS" value="false">
|
||||
</option>
|
||||
<option name="NON_RECURSIVE" value="false">
|
||||
</option>
|
||||
<option name="CREATE_MISSING_DIRECTORIES" value="true">
|
||||
</option>
|
||||
<option name="DONT_CHANGE_FILES" value="false">
|
||||
</option>
|
||||
<option name="QUIET_MODE" value="false">
|
||||
</option>
|
||||
<option name="ADDITIONAL_OPTIONS" value="">
|
||||
</option>
|
||||
</Update>
|
||||
<Commit>
|
||||
<option name="NON_RECURSIVE" value="false">
|
||||
</option>
|
||||
<option name="REVISION_TAG">
|
||||
</option>
|
||||
<option name="LOG_MESSAGE">
|
||||
</option>
|
||||
<option name="ADDITIONAL_OPTIONS">
|
||||
</option>
|
||||
</Commit>
|
||||
<Diff>
|
||||
<option name="REVISION_TAG" value="HEAD">
|
||||
</option>
|
||||
<option name="DATE_TAG" value="">
|
||||
</option>
|
||||
<option name="IGNORE_WHITESPACE" value="false">
|
||||
</option>
|
||||
</Diff>
|
||||
<Add>
|
||||
<option name="ADD_AS_BINARY" value="false">
|
||||
</option>
|
||||
<option name="LOG_MESSAGE">
|
||||
</option>
|
||||
</Add>
|
||||
<Status>
|
||||
<option name="NON_RECURSIVE" value="false">
|
||||
</option>
|
||||
<option name="INCLUDE_TAGS" value="false">
|
||||
</option>
|
||||
</Status>
|
||||
<Edit>
|
||||
<option name="NON_RECURSIVE" value="false">
|
||||
</option>
|
||||
<option name="FORCE_RECURSIVE" value="false">
|
||||
</option>
|
||||
<option name="EDIT" value="false">
|
||||
</option>
|
||||
<option name="UNEDIT" value="false">
|
||||
</option>
|
||||
<option name="COMMIT" value="false">
|
||||
</option>
|
||||
<option name="ALL" value="true">
|
||||
</option>
|
||||
<option name="NONE" value="false">
|
||||
</option>
|
||||
</Edit>
|
||||
<Remove>
|
||||
<option name="NON_RECURSIVE" value="false">
|
||||
</option>
|
||||
<option name="FORCE_RECURSIVE" value="false">
|
||||
</option>
|
||||
<option name="DELETE_FILE" value="false">
|
||||
</option>
|
||||
</Remove>
|
||||
<Log>
|
||||
<option name="DEFAULT_BRANCH" value="false">
|
||||
</option>
|
||||
<option name="NON_RECURSIVE" value="false">
|
||||
</option>
|
||||
<option name="QUIET_MODE" value="true">
|
||||
</option>
|
||||
<option name="ADDITIONAL_OPTIONS" value="">
|
||||
</option>
|
||||
</Log>
|
||||
<Editors>
|
||||
<option name="NON_RECURSIVE" value="false">
|
||||
</option>
|
||||
<option name="FORCE_RECURSIVE" value="false">
|
||||
</option>
|
||||
</Editors>
|
||||
<option name="CLIENT_PATH" value="">
|
||||
</option>
|
||||
<option name="EXTERNAL_DIFF_PATH">
|
||||
</option>
|
||||
<option name="CVS_ENABLED" value="false">
|
||||
</option>
|
||||
<option name="USE_EXTERNAL_DIFF" value="false">
|
||||
</option>
|
||||
<option name="WORKING_FILES_READONLY" value="false">
|
||||
</option>
|
||||
<option name="COMPRESSION_LEVEL" value="0">
|
||||
</option>
|
||||
<option name="ADDITIONAL_OPTIONS" value="">
|
||||
</option>
|
||||
<option name="BINARY_FILES_EXTENSIONS">
|
||||
</option>
|
||||
<option name="REUSE_LAST_LOG_MESSAGE" value="false">
|
||||
</option>
|
||||
<option name="PUT_FOCUS_INTO_LOG_MESSAGE" value="false">
|
||||
</option>
|
||||
<option name="SHOW_PROJECT_ROOTS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_UPDATE_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_COMMIT_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_DIFF_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_ADD_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_STATUS_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_EDIT_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_UNEDIT_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_REMOVE_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_LOG_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_EDITORS_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="HIDE_UNKNOWN_FILES" value="false">
|
||||
</option>
|
||||
<option name="HIDE_MISSING_FILES" value="false">
|
||||
</option>
|
||||
<option name="HIDE_UP_TO_DATE_FILES" value="false">
|
||||
</option>
|
||||
</component>
|
||||
<component name="ProjectViewSettings">
|
||||
<navigator flattenPackages="false" splitterProportion="0.5" autoscrollToSource="false" showMembers="false" showStructure="false" currentView="ProjectPane">
|
||||
</navigator>
|
||||
<view id="ProjectPane">
|
||||
</view>
|
||||
<view id="SourcepathPane">
|
||||
</view>
|
||||
<view id="ClasspathPane">
|
||||
</view>
|
||||
</component>
|
||||
<component name="RunManager">
|
||||
<option name="SHOW_SETTINGS_BEFORE_RUNNING" value="true">
|
||||
</option>
|
||||
<option name="COMPILE_BEFORE_RUNNING" value="true">
|
||||
</option>
|
||||
<activeType name="Application">
|
||||
</activeType>
|
||||
<configuration default="true" name="<template>" selected="false" type="Application">
|
||||
<option name="MAIN_CLASS_NAME">
|
||||
</option>
|
||||
<option name="VM_PARAMETERS">
|
||||
</option>
|
||||
<option name="PROGRAM_PARAMETERS">
|
||||
</option>
|
||||
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$">
|
||||
</option>
|
||||
</configuration>
|
||||
<configuration default="true" name="<template>" selected="false" type="Applet">
|
||||
<option name="MAIN_CLASS_NAME">
|
||||
</option>
|
||||
<option name="HTML_FILE_NAME">
|
||||
</option>
|
||||
<option name="HTML_USED" value="false">
|
||||
</option>
|
||||
<option name="WIDTH" value="400">
|
||||
</option>
|
||||
<option name="HEIGHT" value="300">
|
||||
</option>
|
||||
<option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/config/appletviewer.policy">
|
||||
</option>
|
||||
<option name="VM_PARAMETERS">
|
||||
</option>
|
||||
</configuration>
|
||||
<configuration default="true" name="<template>" selected="false" type="JUnit">
|
||||
<option name="PACKAGE_NAME">
|
||||
</option>
|
||||
<option name="MAIN_CLASS_NAME">
|
||||
</option>
|
||||
<option name="METHOD_NAME">
|
||||
</option>
|
||||
<option name="TEST_OBJECT">
|
||||
</option>
|
||||
<option name="VM_PARAMETERS">
|
||||
</option>
|
||||
<option name="PARAMETERS">
|
||||
</option>
|
||||
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$">
|
||||
</option>
|
||||
</configuration>
|
||||
<configuration default="true" name="<template>" selected="false" type="Remote">
|
||||
<option name="USE_SOCKET_TRANSPORT" value="true">
|
||||
</option>
|
||||
<option name="SERVER_MODE" value="false">
|
||||
</option>
|
||||
<option name="SHMEM_ADDRESS" value="javadebug">
|
||||
</option>
|
||||
<option name="HOST" value="localhost">
|
||||
</option>
|
||||
<option name="PORT" value="5005">
|
||||
</option>
|
||||
</configuration>
|
||||
<configuration default="true" name="<template>" selected="false" type="WebApp">
|
||||
<WebServerIntegration>
|
||||
</WebServerIntegration>
|
||||
<Host>localhost</Host>
|
||||
<Port>5050</Port>
|
||||
</configuration>
|
||||
</component>
|
||||
<component name="BookmarkManager">
|
||||
</component>
|
||||
<component name="Commander">
|
||||
<leftPanel view="Project" active="false">
|
||||
</leftPanel>
|
||||
<rightPanel view="Project" active="true">
|
||||
</rightPanel>
|
||||
<splitter proportion="0.5">
|
||||
</splitter>
|
||||
</component>
|
||||
<component name="PropertiesComponent">
|
||||
<property name="MemberChooser.showClasses" value="true">
|
||||
</property>
|
||||
<property name="GoToFile.includeJavaFiles" value="false">
|
||||
</property>
|
||||
<property name="MemberChooser.sorted" value="false">
|
||||
</property>
|
||||
<property name="GoToClass.includeLibraries" value="false">
|
||||
</property>
|
||||
<property name="MemberChooser.copyJavadoc" value="false">
|
||||
</property>
|
||||
<property name="GoToClass.toSaveIncludeLibraries" value="false">
|
||||
</property>
|
||||
</component>
|
||||
<component name="SelectInManager">
|
||||
</component>
|
||||
<component name="VssConfiguration">
|
||||
<CheckoutOptions>
|
||||
<option name="COMMENT" value="">
|
||||
</option>
|
||||
<option name="DO_NOT_GET_LATEST_VERSION" value="false">
|
||||
</option>
|
||||
<option name="REPLACE_WRITABLE" value="false">
|
||||
</option>
|
||||
<option name="RECURSIVE" value="false">
|
||||
</option>
|
||||
</CheckoutOptions>
|
||||
<CheckinOptions>
|
||||
<option name="COMMENT" value="">
|
||||
</option>
|
||||
<option name="KEEP_CHECKED_OUT" value="false">
|
||||
</option>
|
||||
<option name="RECURSIVE" value="false">
|
||||
</option>
|
||||
</CheckinOptions>
|
||||
<AddOptions>
|
||||
<option name="COMMENT" value="">
|
||||
</option>
|
||||
<option name="STORE_ONLY_LATEST_VERSION" value="false">
|
||||
</option>
|
||||
<option name="CHECK_OUT_IMMEDIATELY" value="false">
|
||||
</option>
|
||||
<option name="FILE_TYPE" value="0">
|
||||
</option>
|
||||
</AddOptions>
|
||||
<UndocheckoutOptions>
|
||||
<option name="MAKE_WRITABLE" value="false">
|
||||
</option>
|
||||
<option name="REPLACE_LOCAL_COPY" value="0">
|
||||
</option>
|
||||
<option name="RECURSIVE" value="false">
|
||||
</option>
|
||||
</UndocheckoutOptions>
|
||||
<DiffOptions>
|
||||
<option name="IGNORE_WHITE_SPACE" value="false">
|
||||
</option>
|
||||
<option name="IGNORE_CASE" value="false">
|
||||
</option>
|
||||
</DiffOptions>
|
||||
<GetOptions>
|
||||
<option name="REPLACE_WRITABLE" value="0">
|
||||
</option>
|
||||
<option name="MAKE_WRITABLE" value="false">
|
||||
</option>
|
||||
<option name="RECURSIVE" value="false">
|
||||
</option>
|
||||
</GetOptions>
|
||||
<option name="ENABLED" value="false">
|
||||
</option>
|
||||
<option name="CLIENT_PATH" value="">
|
||||
</option>
|
||||
<option name="SRCSAFEINI_PATH" value="">
|
||||
</option>
|
||||
<option name="USER_NAME" value="">
|
||||
</option>
|
||||
<option name="PWD" value="">
|
||||
</option>
|
||||
<option name="SHOW_CHECKOUT_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_CHECKIN_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_ADD_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_UNDOCHECKOUT_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_DIFF_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="SHOW_GET_OPTIONS" value="true">
|
||||
</option>
|
||||
<option name="USE_EXTERNAL_DIFF" value="false">
|
||||
</option>
|
||||
<option name="EXTERNAL_DIFF_PATH" value="">
|
||||
</option>
|
||||
<option name="REUSE_LAST_COMMENT" value="false">
|
||||
</option>
|
||||
<option name="PUT_FOCUS_INTO_COMMENT" value="false">
|
||||
</option>
|
||||
</component>
|
||||
<component name="HierarchyBrowserManager">
|
||||
<option name="SHOW_PACKAGES" value="false">
|
||||
</option>
|
||||
<option name="IS_AUTOSCROLL_TO_SOURCE" value="false">
|
||||
</option>
|
||||
<option name="SORT_ALPHABETICALLY" value="false">
|
||||
</option>
|
||||
</component>
|
||||
<component name="WebViewSettings">
|
||||
<webview flattenPackages="false" autoscrollToSource="false" showMembers="false">
|
||||
</webview>
|
||||
</component>
|
||||
<component name="EjbViewSettings">
|
||||
<EjbView autoscrollToSource="false" showMembers="false">
|
||||
</EjbView>
|
||||
</component>
|
||||
<component name="LvcsConfiguration">
|
||||
<option name="LOCAL_VCS_ENABLED" value="true">
|
||||
</option>
|
||||
<option name="LOCAL_VCS_PURGING_PERIOD" value="259200000">
|
||||
</option>
|
||||
<option name="ADD_LABEL_ON_PROJECT_OPEN" value="true">
|
||||
</option>
|
||||
<option name="ADD_LABEL_ON_PROJECT_COMPILATION" value="true">
|
||||
</option>
|
||||
<option name="ADD_LABEL_ON_FILE_PACKAGE_COMPILATION" value="true">
|
||||
</option>
|
||||
<option name="ADD_LABEL_ON_PROJECT_MAKE" value="true">
|
||||
</option>
|
||||
<option name="ADD_LABEL_ON_RUNNING" value="true">
|
||||
</option>
|
||||
<option name="ADD_LABEL_ON_DEBUGGING" value="true">
|
||||
</option>
|
||||
<option name="ADD_LABEL_ON_UNIT_TEST" value="true">
|
||||
</option>
|
||||
</component>
|
||||
<component name="InspectionManager">
|
||||
<option name="AUTOSCROLL_TO_SOURCE" value="false">
|
||||
</option>
|
||||
<option name="SPLITTER_PROPORTION" value="0.5">
|
||||
</option>
|
||||
<inspection_tool enabled="true" class="Unreachable declaration">
|
||||
<option name="ADD_MAINS_TO_ENTRIES" value="true">
|
||||
</option>
|
||||
<option name="ADD_JUNIT_TO_ENTRIES" value="true">
|
||||
</option>
|
||||
<option name="ADD_EJB_TO_ENTRIES" value="true">
|
||||
</option>
|
||||
<option name="ADD_APPLET_TO_ENTRIES" value="true">
|
||||
</option>
|
||||
<option name="ADD_SERVLET_TO_ENTRIES" value="true">
|
||||
</option>
|
||||
<option name="ADD_NONJAVA_TO_ENTRIES" value="true">
|
||||
</option>
|
||||
</inspection_tool>
|
||||
<inspection_tool enabled="true" class="Declaration access can be weaker">
|
||||
<option name="SUGGEST_PACKAGE_LOCAL_FOR_MEMBERS" value="true">
|
||||
</option>
|
||||
<option name="SUGGEST_PACKAGE_LOCAL_FOR_TOP_CLASSES" value="true">
|
||||
</option>
|
||||
<option name="SUGGEST_PRIVATE_FOR_INNERS" value="false">
|
||||
</option>
|
||||
</inspection_tool>
|
||||
<inspection_tool enabled="true" class="Declaration can have static modifier">
|
||||
</inspection_tool>
|
||||
<inspection_tool enabled="true" class="Declaration can have final modifier">
|
||||
<option name="REPORT_CLASSES" value="false">
|
||||
</option>
|
||||
<option name="REPORT_METHODS" value="false">
|
||||
</option>
|
||||
<option name="REPORT_FIELDS" value="true">
|
||||
</option>
|
||||
</inspection_tool>
|
||||
<inspection_tool enabled="true" class="Unused method parameters">
|
||||
</inspection_tool>
|
||||
<inspection_tool enabled="true" class="Constant conditions & NPEs">
|
||||
</inspection_tool>
|
||||
<inspection_tool enabled="true" class="Assignment is not used">
|
||||
</inspection_tool>
|
||||
<inspection_tool enabled="true" class="Type cast is redundant">
|
||||
</inspection_tool>
|
||||
<inspection_tool enabled="true" class="Declaration has javadoc problems">
|
||||
<option name="TOP_LEVEL_CLASS_OPTIONS">
|
||||
<value>
|
||||
<option name="ACCESS_JAVADOC_REQUIRED_FOR" value="public">
|
||||
</option>
|
||||
<option name="REQUIRED_TAGS" value="">
|
||||
</option>
|
||||
</value>
|
||||
</option>
|
||||
<option name="INNER_CLASS_OPTIONS">
|
||||
<value>
|
||||
<option name="ACCESS_JAVADOC_REQUIRED_FOR" value="protected">
|
||||
</option>
|
||||
<option name="REQUIRED_TAGS" value="">
|
||||
</option>
|
||||
</value>
|
||||
</option>
|
||||
<option name="METHOD_OPTIONS">
|
||||
<value>
|
||||
<option name="ACCESS_JAVADOC_REQUIRED_FOR" value="protected">
|
||||
</option>
|
||||
<option name="REQUIRED_TAGS" value="@return@param@throws or @exception">
|
||||
</option>
|
||||
</value>
|
||||
</option>
|
||||
<option name="FIELD_OPTIONS">
|
||||
<value>
|
||||
<option name="ACCESS_JAVADOC_REQUIRED_FOR" value="protected">
|
||||
</option>
|
||||
<option name="REQUIRED_TAGS" value="">
|
||||
</option>
|
||||
</value>
|
||||
</option>
|
||||
</inspection_tool>
|
||||
<inspection_tool enabled="false" class="Empty method">
|
||||
</inspection_tool>
|
||||
<inspection_tool enabled="false" class="Unused method return value">
|
||||
</inspection_tool>
|
||||
<inspection_tool enabled="false" class="Method returns the same value">
|
||||
</inspection_tool>
|
||||
<inspection_tool enabled="false" class="Actual method parameter is the same constant">
|
||||
</inspection_tool>
|
||||
</component>
|
||||
<component name="TodoView" selected-index="0">
|
||||
<todo-panel id="selected-file">
|
||||
<are-packages-shown value="false">
|
||||
</are-packages-shown>
|
||||
<flattern-packages value="false">
|
||||
</flattern-packages>
|
||||
<is-autoscroll-to-source value="true">
|
||||
</is-autoscroll-to-source>
|
||||
</todo-panel>
|
||||
<todo-panel id="all">
|
||||
<are-packages-shown value="true">
|
||||
</are-packages-shown>
|
||||
<flattern-packages value="false">
|
||||
</flattern-packages>
|
||||
<is-autoscroll-to-source value="true">
|
||||
</is-autoscroll-to-source>
|
||||
</todo-panel>
|
||||
</component>
|
||||
<component name="VcsManagerConfiguration">
|
||||
<option name="ACTIVE_VCS_NAME" value="">
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
||||
Reference in New Issue
Block a user