Skip to content

Commit

Permalink
DanielWagnerHall: Updating javadocs
Browse files Browse the repository at this point in the history
r14408
  • Loading branch information
illicitonion committed Oct 27, 2011
1 parent a5eb68d commit 4e44420
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ <H2>
<TH ALIGN="left"><B>Methods inherited from class junit.framework.Assert</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail</CODE></TD>
<TD><CODE>assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail, failNotEquals, failNotSame, failSame, format</CODE></TD>
</TR>
</TABLE>
&nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
Expand Down
2 changes: 1 addition & 1 deletion docs/api/java/org/openqa/selenium/html5/package-tree.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ <H2>
<LI TYPE="circle">java.lang.Object<UL>
<LI TYPE="circle">java.lang.Enum&lt;E&gt; (implements java.lang.Comparable&lt;T&gt;, java.io.Serializable)
<UL>
<LI TYPE="circle">org.openqa.selenium.html5.<A HREF="../../../../org/openqa/selenium/html5/AppCacheType.html" title="enum in org.openqa.selenium.html5"><B>AppCacheType</B></A><LI TYPE="circle">org.openqa.selenium.html5.<A HREF="../../../../org/openqa/selenium/html5/AppCacheStatus.html" title="enum in org.openqa.selenium.html5"><B>AppCacheStatus</B></A></UL>
<LI TYPE="circle">org.openqa.selenium.html5.<A HREF="../../../../org/openqa/selenium/html5/AppCacheStatus.html" title="enum in org.openqa.selenium.html5"><B>AppCacheStatus</B></A><LI TYPE="circle">org.openqa.selenium.html5.<A HREF="../../../../org/openqa/selenium/html5/AppCacheType.html" title="enum in org.openqa.selenium.html5"><B>AppCacheType</B></A></UL>
</UL>
</UL>
<HR>
Expand Down
12 changes: 8 additions & 4 deletions docs/api/java/org/openqa/selenium/interactions/Actions.html
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,8 @@ <H2>
must be called to release the modifier.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>theKey</CODE> - Either <A HREF="../../../../org/openqa/selenium/Keys.html#SHIFT"><CODE>Keys.SHIFT</CODE></A>, <A HREF="../../../../org/openqa/selenium/Keys.html#ALT"><CODE>Keys.ALT</CODE></A> or <A HREF="../../../../org/openqa/selenium/Keys.html#CONTROL"><CODE>Keys.CONTROL</CODE></A>.
<DT><B>Parameters:</B><DD><CODE>theKey</CODE> - Either <A HREF="../../../../org/openqa/selenium/Keys.html#SHIFT"><CODE>Keys.SHIFT</CODE></A>, <A HREF="../../../../org/openqa/selenium/Keys.html#ALT"><CODE>Keys.ALT</CODE></A> or <A HREF="../../../../org/openqa/selenium/Keys.html#CONTROL"><CODE>Keys.CONTROL</CODE></A>. If the
provided key is none of those, <CODE>IllegalArgumentException</CODE> is thrown.
<DT><B>Returns:</B><DD>A self reference.</DL>
</DD>
</DL>
Expand All @@ -513,7 +514,8 @@ <H2>
<i>Actions.click(element).sendKeys(theKey);</i>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>theKey</CODE> - Either <A HREF="../../../../org/openqa/selenium/Keys.html#SHIFT"><CODE>Keys.SHIFT</CODE></A>, <A HREF="../../../../org/openqa/selenium/Keys.html#ALT"><CODE>Keys.ALT</CODE></A> or <A HREF="../../../../org/openqa/selenium/Keys.html#CONTROL"><CODE>Keys.CONTROL</CODE></A>.
<DT><B>Parameters:</B><DD><CODE>theKey</CODE> - Either <A HREF="../../../../org/openqa/selenium/Keys.html#SHIFT"><CODE>Keys.SHIFT</CODE></A>, <A HREF="../../../../org/openqa/selenium/Keys.html#ALT"><CODE>Keys.ALT</CODE></A> or <A HREF="../../../../org/openqa/selenium/Keys.html#CONTROL"><CODE>Keys.CONTROL</CODE></A>. If the
provided key is none of those, <CODE>IllegalArgumentException</CODE> is thrown.
<DT><B>Returns:</B><DD>A self reference.<DT><B>See Also:</B><DD><A HREF="../../../../org/openqa/selenium/interactions/Actions.html#keyDown(org.openqa.selenium.Keys)"><CODE>keyDown(org.openqa.selenium.Keys)</CODE></A></DL>
</DD>
</DL>
Expand Down Expand Up @@ -736,7 +738,9 @@ <H2>
The element is scrolled into view and its location is calculated using getBoundingClientRect.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>toElement</CODE> - element to move to.<DD><CODE>xOffset</CODE> - Offset from the top-left corner.<DD><CODE>yOffset</CODE> - Offset from the top-left corner.
<DT><B>Parameters:</B><DD><CODE>toElement</CODE> - element to move to.<DD><CODE>xOffset</CODE> - Offset from the top-left corner. A negative value means coordinates right from
the element.<DD><CODE>yOffset</CODE> - Offset from the top-left corner. A negative value means coordinates above
the element.
<DT><B>Returns:</B><DD>A self reference.</DL>
</DD>
</DL>
Expand All @@ -753,7 +757,7 @@ <H2>
the viewport is scrolled to match.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>xOffset</CODE> - horizontal offset.<DD><CODE>yOffset</CODE> - vertical offset.
<DT><B>Parameters:</B><DD><CODE>xOffset</CODE> - horizontal offset. A negative value means moving the mouse left.<DD><CODE>yOffset</CODE> - vertical offset. A negative value means moving the mouse up.
<DT><B>Returns:</B><DD>A self reference.
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/openqa/selenium/interactions/MoveTargetOutOfBoundsException.html" title="class in org.openqa.selenium.interactions">MoveTargetOutOfBoundsException</A></CODE> - if the provided offset is outside the document's
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ <H2>
<TH ALIGN="left"><B>Methods inherited from class junit.framework.Assert</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail</CODE></TD>
<TD><CODE>assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail, failNotEquals, failNotSame, failSame, format</CODE></TD>
</TR>
</TABLE>
&nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
Expand Down
1 change: 0 additions & 1 deletion docs/api/java/org/openqa/selenium/os/WindowsUtils.html
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,6 @@ <H2>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>args</CODE> -
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE>java.lang.Exception</CODE></DL>
</DD>
</DL>
Expand Down
4 changes: 2 additions & 2 deletions docs/api/java/org/openqa/selenium/package-tree.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ <H2>
<LI TYPE="circle">java.lang.Object<UL>
<LI TYPE="circle">java.lang.Enum&lt;E&gt; (implements java.lang.Comparable&lt;T&gt;, java.io.Serializable)
<UL>
<LI TYPE="circle">org.openqa.selenium.<A HREF="../../../org/openqa/selenium/Platform.html" title="enum in org.openqa.selenium"><B>Platform</B></A><LI TYPE="circle">org.openqa.selenium.<A HREF="../../../org/openqa/selenium/Keys.html" title="enum in org.openqa.selenium"><B>Keys</B></A> (implements java.lang.CharSequence)
<LI TYPE="circle">org.openqa.selenium.<A HREF="../../../org/openqa/selenium/ScreenOrientation.html" title="enum in org.openqa.selenium"><B>ScreenOrientation</B></A><LI TYPE="circle">org.openqa.selenium.<A HREF="../../../org/openqa/selenium/Proxy.ProxyType.html" title="enum in org.openqa.selenium"><B>Proxy.ProxyType</B></A></UL>
<LI TYPE="circle">org.openqa.selenium.<A HREF="../../../org/openqa/selenium/Keys.html" title="enum in org.openqa.selenium"><B>Keys</B></A> (implements java.lang.CharSequence)
<LI TYPE="circle">org.openqa.selenium.<A HREF="../../../org/openqa/selenium/Platform.html" title="enum in org.openqa.selenium"><B>Platform</B></A><LI TYPE="circle">org.openqa.selenium.<A HREF="../../../org/openqa/selenium/ScreenOrientation.html" title="enum in org.openqa.selenium"><B>ScreenOrientation</B></A><LI TYPE="circle">org.openqa.selenium.<A HREF="../../../org/openqa/selenium/Proxy.ProxyType.html" title="enum in org.openqa.selenium"><B>Proxy.ProxyType</B></A></UL>
</UL>
</UL>
<HR>
Expand Down
4 changes: 2 additions & 2 deletions docs/api/java/org/openqa/selenium/support/package-tree.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ <H2>
Annotation Type Hierarchy
</H2>
<UL>
<LI TYPE="circle">org.openqa.selenium.support.<A HREF="../../../../org/openqa/selenium/support/FindBys.html" title="annotation in org.openqa.selenium.support"><B>FindBys</B></A> (implements java.lang.annotation.Annotation)
<LI TYPE="circle">org.openqa.selenium.support.<A HREF="../../../../org/openqa/selenium/support/FindBy.html" title="annotation in org.openqa.selenium.support"><B>FindBy</B></A> (implements java.lang.annotation.Annotation)
<LI TYPE="circle">org.openqa.selenium.support.<A HREF="../../../../org/openqa/selenium/support/CacheLookup.html" title="annotation in org.openqa.selenium.support"><B>CacheLookup</B></A> (implements java.lang.annotation.Annotation)
<LI TYPE="circle">org.openqa.selenium.support.<A HREF="../../../../org/openqa/selenium/support/FindBy.html" title="annotation in org.openqa.selenium.support"><B>FindBy</B></A> (implements java.lang.annotation.Annotation)
<LI TYPE="circle">org.openqa.selenium.support.<A HREF="../../../../org/openqa/selenium/support/FindBys.html" title="annotation in org.openqa.selenium.support"><B>FindBys</B></A> (implements java.lang.annotation.Annotation)
</UL>
<H2>
Enum Hierarchy
Expand Down
8 changes: 4 additions & 4 deletions docs/api/java/overview-tree.html
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,9 @@ <H2>
Annotation Type Hierarchy
</H2>
<UL>
<LI TYPE="circle">org.openqa.selenium.support.<A HREF="org/openqa/selenium/support/FindBys.html" title="annotation in org.openqa.selenium.support"><B>FindBys</B></A> (implements java.lang.annotation.Annotation)
<LI TYPE="circle">org.openqa.selenium.support.<A HREF="org/openqa/selenium/support/FindBy.html" title="annotation in org.openqa.selenium.support"><B>FindBy</B></A> (implements java.lang.annotation.Annotation)
<LI TYPE="circle">org.openqa.selenium.support.<A HREF="org/openqa/selenium/support/CacheLookup.html" title="annotation in org.openqa.selenium.support"><B>CacheLookup</B></A> (implements java.lang.annotation.Annotation)
<LI TYPE="circle">org.openqa.selenium.support.<A HREF="org/openqa/selenium/support/FindBy.html" title="annotation in org.openqa.selenium.support"><B>FindBy</B></A> (implements java.lang.annotation.Annotation)
<LI TYPE="circle">org.openqa.selenium.support.<A HREF="org/openqa/selenium/support/FindBys.html" title="annotation in org.openqa.selenium.support"><B>FindBys</B></A> (implements java.lang.annotation.Annotation)
</UL>
<H2>
Enum Hierarchy
Expand All @@ -277,8 +277,8 @@ <H2>
<LI TYPE="circle">java.lang.Object<UL>
<LI TYPE="circle">java.lang.Enum&lt;E&gt; (implements java.lang.Comparable&lt;T&gt;, java.io.Serializable)
<UL>
<LI TYPE="circle">org.openqa.selenium.<A HREF="org/openqa/selenium/Platform.html" title="enum in org.openqa.selenium"><B>Platform</B></A><LI TYPE="circle">org.openqa.selenium.<A HREF="org/openqa/selenium/Keys.html" title="enum in org.openqa.selenium"><B>Keys</B></A> (implements java.lang.CharSequence)
<LI TYPE="circle">org.openqa.selenium.<A HREF="org/openqa/selenium/ScreenOrientation.html" title="enum in org.openqa.selenium"><B>ScreenOrientation</B></A><LI TYPE="circle">org.openqa.selenium.<A HREF="org/openqa/selenium/Proxy.ProxyType.html" title="enum in org.openqa.selenium"><B>Proxy.ProxyType</B></A><LI TYPE="circle">org.openqa.selenium.html5.<A HREF="org/openqa/selenium/html5/AppCacheType.html" title="enum in org.openqa.selenium.html5"><B>AppCacheType</B></A><LI TYPE="circle">org.openqa.selenium.html5.<A HREF="org/openqa/selenium/html5/AppCacheStatus.html" title="enum in org.openqa.selenium.html5"><B>AppCacheStatus</B></A><LI TYPE="circle">org.openqa.selenium.support.<A HREF="org/openqa/selenium/support/How.html" title="enum in org.openqa.selenium.support"><B>How</B></A></UL>
<LI TYPE="circle">org.openqa.selenium.<A HREF="org/openqa/selenium/Keys.html" title="enum in org.openqa.selenium"><B>Keys</B></A> (implements java.lang.CharSequence)
<LI TYPE="circle">org.openqa.selenium.<A HREF="org/openqa/selenium/Platform.html" title="enum in org.openqa.selenium"><B>Platform</B></A><LI TYPE="circle">org.openqa.selenium.<A HREF="org/openqa/selenium/ScreenOrientation.html" title="enum in org.openqa.selenium"><B>ScreenOrientation</B></A><LI TYPE="circle">org.openqa.selenium.<A HREF="org/openqa/selenium/Proxy.ProxyType.html" title="enum in org.openqa.selenium"><B>Proxy.ProxyType</B></A><LI TYPE="circle">org.openqa.selenium.html5.<A HREF="org/openqa/selenium/html5/AppCacheStatus.html" title="enum in org.openqa.selenium.html5"><B>AppCacheStatus</B></A><LI TYPE="circle">org.openqa.selenium.html5.<A HREF="org/openqa/selenium/html5/AppCacheType.html" title="enum in org.openqa.selenium.html5"><B>AppCacheType</B></A><LI TYPE="circle">org.openqa.selenium.support.<A HREF="org/openqa/selenium/support/How.html" title="enum in org.openqa.selenium.support"><B>How</B></A></UL>
</UL>
</UL>
<HR>
Expand Down

0 comments on commit 4e44420

Please sign in to comment.