Skip to content

Commit

Permalink
Adding deprecation sign to all frequentrly used classes in RC API
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Oct 29, 2014
1 parent a79f932 commit 273c490
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@
* Provides a <code>doCommand</code> method, which sends the command to the browser to be performed.
* </p>
*
*
*
* @author Paul Hammant
* @version $Revision$
* @deprecated The RC interface will be removed in Selenium 3.0. Please migrate to using WebDriver.
*/
@Deprecated
public interface CommandProcessor {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
/**
* The default implementation of the Selenium interface; <i>end users will primarily interact with
* this object.</i>
*
* @deprecated The RC interface will be removed in Selenium 3.0. Please migrate to using WebDriver.
*/
@Deprecated
public class DefaultSelenium implements Selenium {

protected CommandProcessor commandProcessor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@
* Sends commands and retrieves results via HTTP.
*
* @author Ben Griffiths, Jez Humble
* @deprecated The RC interface will be removed in Selenium 3.0. Please migrate to using WebDriver.
*/
@Deprecated
public class HttpCommandProcessor implements CommandProcessor {

private String pathToServlet;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@
* </p>
*
* @author Nelson Sproul (nsproul@bea.com) Mar 13-06
* @deprecated The RC interface will be removed in Selenium 3.0. Please migrate to using WebDriver.
*/
@Deprecated
public class SeleneseTestBase {

private static final boolean THIS_IS_WINDOWS = File.pathSeparator.equals(";");
Expand Down
2 changes: 1 addition & 1 deletion java/client/src/com/thoughtworks/selenium/Wait.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
* @author Dan Fabulich
*
* @deprecated Moved to com.thoughtworks.selenium.webdriven
*
*/
@Deprecated
public abstract class Wait {
public Wait() {
}
Expand Down

0 comments on commit 273c490

Please sign in to comment.