[Jsimplebrowser-svn] SF.net SVN: jsimplebrowser: [47] trunk
Status: Alpha
Brought to you by:
rdimarco
From: <rdi...@us...> - 2007-08-13 16:21:00
|
Revision: 47 http://jsimplebrowser.svn.sourceforge.net/jsimplebrowser/?rev=47&view=rev Author: rdimarco Date: 2007-08-13 09:14:23 -0700 (Mon, 13 Aug 2007) Log Message: ----------- Added license information to all files. Modified Paths: -------------- trunk/client/src/main/java/com/software416/jsimplebrowser/client/SimpleClient.java trunk/client/src/test/java/com/software416/jsimplebrowser/client/SimpleClientTest.java trunk/core/src/main/java/com/software416/jsimplebrowser/Browser.java trunk/core/src/main/java/com/software416/jsimplebrowser/BrowserException.java trunk/core/src/main/java/com/software416/jsimplebrowser/BrowserRuntimeException.java trunk/core/src/main/java/com/software416/jsimplebrowser/History.java trunk/core/src/main/java/com/software416/jsimplebrowser/HtmlParseException.java trunk/core/src/main/java/com/software416/jsimplebrowser/HttpResponse.java trunk/core/src/main/java/com/software416/jsimplebrowser/Window.java trunk/core/src/main/java/com/software416/jsimplebrowser/impl/BrowserImpl.java trunk/core/src/main/java/com/software416/jsimplebrowser/impl/HttpResponseImpl.java trunk/core/src/main/java/com/software416/jsimplebrowser/impl/WindowImpl.java trunk/core/src/main/java/com/software416/jsimplebrowser/impl/WindowProvider.java trunk/core/src/main/java/com/software416/jsimplebrowser/util/BrowserHelper.java trunk/core/src/main/java/com/software416/jsimplebrowser/util/ElementLocator.java trunk/core/src/main/java/com/software416/jsimplebrowser/util/HtmlToDomConverter.java trunk/core/src/test/java/com/software416/jsimplebrowser/impl/BrowserTest.java trunk/core/src/test/java/com/software416/jsimplebrowser/util/BrowserHelperTest.java trunk/core/src/test/java/com/software416/jsimplebrowser/util/ElementLocatorTest.java trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumClient.java trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumClientException.java trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumCommand.java trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumHtmlRunner.java trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/VerificationFailureEvent.java trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/VerificationFailureListener.java trunk/selenium-client/src/test/java/com/software416/jsimplebrowser/seleniumclient/SeleniumClientTest.java trunk/selenium-client/src/test/java/com/software416/jsimplebrowser/seleniumclient/SeleniumHtmlRunnerTest.java Modified: trunk/client/src/main/java/com/software416/jsimplebrowser/client/SimpleClient.java =================================================================== --- trunk/client/src/main/java/com/software416/jsimplebrowser/client/SimpleClient.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/client/src/main/java/com/software416/jsimplebrowser/client/SimpleClient.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.client; import java.util.ArrayList; Modified: trunk/client/src/test/java/com/software416/jsimplebrowser/client/SimpleClientTest.java =================================================================== --- trunk/client/src/test/java/com/software416/jsimplebrowser/client/SimpleClientTest.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/client/src/test/java/com/software416/jsimplebrowser/client/SimpleClientTest.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.client; import static org.junit.Assert.*; Modified: trunk/core/src/main/java/com/software416/jsimplebrowser/Browser.java =================================================================== --- trunk/core/src/main/java/com/software416/jsimplebrowser/Browser.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/main/java/com/software416/jsimplebrowser/Browser.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser; import java.util.List; Modified: trunk/core/src/main/java/com/software416/jsimplebrowser/BrowserException.java =================================================================== --- trunk/core/src/main/java/com/software416/jsimplebrowser/BrowserException.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/main/java/com/software416/jsimplebrowser/BrowserException.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser; public class BrowserException extends Exception { Modified: trunk/core/src/main/java/com/software416/jsimplebrowser/BrowserRuntimeException.java =================================================================== --- trunk/core/src/main/java/com/software416/jsimplebrowser/BrowserRuntimeException.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/main/java/com/software416/jsimplebrowser/BrowserRuntimeException.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser; public class BrowserRuntimeException extends RuntimeException { Modified: trunk/core/src/main/java/com/software416/jsimplebrowser/History.java =================================================================== --- trunk/core/src/main/java/com/software416/jsimplebrowser/History.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/main/java/com/software416/jsimplebrowser/History.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser; public interface History { Modified: trunk/core/src/main/java/com/software416/jsimplebrowser/HtmlParseException.java =================================================================== --- trunk/core/src/main/java/com/software416/jsimplebrowser/HtmlParseException.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/main/java/com/software416/jsimplebrowser/HtmlParseException.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser; public class HtmlParseException extends BrowserException { Modified: trunk/core/src/main/java/com/software416/jsimplebrowser/HttpResponse.java =================================================================== --- trunk/core/src/main/java/com/software416/jsimplebrowser/HttpResponse.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/main/java/com/software416/jsimplebrowser/HttpResponse.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser; import org.apache.commons.collections.MultiMap; Modified: trunk/core/src/main/java/com/software416/jsimplebrowser/Window.java =================================================================== --- trunk/core/src/main/java/com/software416/jsimplebrowser/Window.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/main/java/com/software416/jsimplebrowser/Window.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser; import org.apache.commons.collections.MultiMap; Modified: trunk/core/src/main/java/com/software416/jsimplebrowser/impl/BrowserImpl.java =================================================================== --- trunk/core/src/main/java/com/software416/jsimplebrowser/impl/BrowserImpl.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/main/java/com/software416/jsimplebrowser/impl/BrowserImpl.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.impl; import java.io.ByteArrayOutputStream; Modified: trunk/core/src/main/java/com/software416/jsimplebrowser/impl/HttpResponseImpl.java =================================================================== --- trunk/core/src/main/java/com/software416/jsimplebrowser/impl/HttpResponseImpl.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/main/java/com/software416/jsimplebrowser/impl/HttpResponseImpl.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.impl; import java.util.Collection; Modified: trunk/core/src/main/java/com/software416/jsimplebrowser/impl/WindowImpl.java =================================================================== --- trunk/core/src/main/java/com/software416/jsimplebrowser/impl/WindowImpl.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/main/java/com/software416/jsimplebrowser/impl/WindowImpl.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.impl; import java.io.IOException; Modified: trunk/core/src/main/java/com/software416/jsimplebrowser/impl/WindowProvider.java =================================================================== --- trunk/core/src/main/java/com/software416/jsimplebrowser/impl/WindowProvider.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/main/java/com/software416/jsimplebrowser/impl/WindowProvider.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.impl; import com.google.inject.Provider; Modified: trunk/core/src/main/java/com/software416/jsimplebrowser/util/BrowserHelper.java =================================================================== --- trunk/core/src/main/java/com/software416/jsimplebrowser/util/BrowserHelper.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/main/java/com/software416/jsimplebrowser/util/BrowserHelper.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.util; import java.util.ArrayList; Modified: trunk/core/src/main/java/com/software416/jsimplebrowser/util/ElementLocator.java =================================================================== --- trunk/core/src/main/java/com/software416/jsimplebrowser/util/ElementLocator.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/main/java/com/software416/jsimplebrowser/util/ElementLocator.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.util; import javax.xml.xpath.XPath; Modified: trunk/core/src/main/java/com/software416/jsimplebrowser/util/HtmlToDomConverter.java =================================================================== --- trunk/core/src/main/java/com/software416/jsimplebrowser/util/HtmlToDomConverter.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/main/java/com/software416/jsimplebrowser/util/HtmlToDomConverter.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.util; import java.io.ByteArrayInputStream; Modified: trunk/core/src/test/java/com/software416/jsimplebrowser/impl/BrowserTest.java =================================================================== --- trunk/core/src/test/java/com/software416/jsimplebrowser/impl/BrowserTest.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/test/java/com/software416/jsimplebrowser/impl/BrowserTest.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.impl; import static org.junit.Assert.*; Modified: trunk/core/src/test/java/com/software416/jsimplebrowser/util/BrowserHelperTest.java =================================================================== --- trunk/core/src/test/java/com/software416/jsimplebrowser/util/BrowserHelperTest.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/test/java/com/software416/jsimplebrowser/util/BrowserHelperTest.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.util; import static org.junit.Assert.assertEquals; Modified: trunk/core/src/test/java/com/software416/jsimplebrowser/util/ElementLocatorTest.java =================================================================== --- trunk/core/src/test/java/com/software416/jsimplebrowser/util/ElementLocatorTest.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/core/src/test/java/com/software416/jsimplebrowser/util/ElementLocatorTest.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.util; import static org.junit.Assert.*; Modified: trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumClient.java =================================================================== --- trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumClient.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumClient.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.seleniumclient; import java.util.ArrayList; Modified: trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumClientException.java =================================================================== --- trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumClientException.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumClientException.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.seleniumclient; public class SeleniumClientException extends Exception { Modified: trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumCommand.java =================================================================== --- trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumCommand.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumCommand.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.seleniumclient; public class SeleniumCommand { Modified: trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumHtmlRunner.java =================================================================== --- trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumHtmlRunner.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/SeleniumHtmlRunner.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.seleniumclient; import java.io.File; Modified: trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/VerificationFailureEvent.java =================================================================== --- trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/VerificationFailureEvent.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/VerificationFailureEvent.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.seleniumclient; public class VerificationFailureEvent { Modified: trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/VerificationFailureListener.java =================================================================== --- trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/VerificationFailureListener.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/selenium-client/src/main/java/com/software416/jsimplebrowser/seleniumclient/VerificationFailureListener.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.seleniumclient; public interface VerificationFailureListener { Modified: trunk/selenium-client/src/test/java/com/software416/jsimplebrowser/seleniumclient/SeleniumClientTest.java =================================================================== --- trunk/selenium-client/src/test/java/com/software416/jsimplebrowser/seleniumclient/SeleniumClientTest.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/selenium-client/src/test/java/com/software416/jsimplebrowser/seleniumclient/SeleniumClientTest.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.seleniumclient; import static org.junit.Assert.*; Modified: trunk/selenium-client/src/test/java/com/software416/jsimplebrowser/seleniumclient/SeleniumHtmlRunnerTest.java =================================================================== --- trunk/selenium-client/src/test/java/com/software416/jsimplebrowser/seleniumclient/SeleniumHtmlRunnerTest.java 2007-08-13 15:49:25 UTC (rev 46) +++ trunk/selenium-client/src/test/java/com/software416/jsimplebrowser/seleniumclient/SeleniumHtmlRunnerTest.java 2007-08-13 16:14:23 UTC (rev 47) @@ -1,3 +1,13 @@ +// +// Copyright (c) 2008, 416 Software, LLC. +// All rights reserved. This program and the accompanying materials +// are made available under the terms of the GNU General Public License v2.0 +// which accompanies this distribution, and is available at +// http://www.gnu.org/licenses/gpl-2.0.txt +// +// Any non-Open Source projects interested in using this program may purchase +// a commercial license by emailing sa...@41... +// package com.software416.jsimplebrowser.seleniumclient; import static org.junit.Assert.*; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |