Skip to content

Commit cfff22c

Browse files
committed
1 parent 84c9ed1 commit cfff22c

99 files changed

Lines changed: 115 additions & 15 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/main/java/org/htmlunit/html/CharacterDataChangeEvent.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* This is the event class for notifications about changes to the Character Data.
2121
*
2222
* @author Ahmed Ashour
23+
* @author Ronald Brill
24+
*
2325
* @see CharacterDataChangeListener
2426
*/
2527
public class CharacterDataChangeEvent extends EventObject {

src/main/java/org/htmlunit/html/DomAttr.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
* @author Denis N. Antonioli
2626
* @author David K. Taylor
2727
* @author Ahmed Ashour
28+
* @author Ronald Brill
2829
*/
2930
public class DomAttr extends DomNamespaceNode implements Attr {
3031

src/main/java/org/htmlunit/html/DomChangeEvent.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@
1919
/**
2020
* This is the event class for notifications about changes to the DOM structure.
2121
*
22-
* @author Ahmed Ashour
2322
* @see DomChangeListener
23+
*
24+
* @author Ahmed Ashour
25+
* @author Ronald Brill
2426
*/
2527
public class DomChangeEvent extends EventObject {
2628

src/main/java/org/htmlunit/html/DomChangeListener.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@
1919
/**
2020
* Implementations of this interface receive notifications of changes to the DOM structure.
2121
*
22-
* @author Ahmed Ashour
2322
* @see DomChangeEvent
23+
*
24+
* @author Ahmed Ashour
25+
* @author Ronald Brill
2426
*/
2527
public interface DomChangeListener extends Serializable {
2628

src/main/java/org/htmlunit/html/DomDocumentFragment.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
* A DOM object for DocumentFragment.
2222
*
2323
* @author Ahmed Ashour
24+
* @author Ronald Brill
2425
*/
2526
public class DomDocumentFragment extends DomNode implements DocumentFragment {
2627

src/main/java/org/htmlunit/html/DomDocumentType.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* A DOM object for DocumentType.
2323
*
2424
* @author Ahmed Ashour
25+
* @author Ronald Brill
2526
*/
2627
public class DomDocumentType extends DomNode implements DocumentType {
2728

src/main/java/org/htmlunit/html/DomNodeList.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@
2020

2121
/**
2222
* A list of {@link DomNode}s which is both a W3C {@link NodeList} and a java {@link List}.
23+
* @param <E> the element type
2324
*
2425
* @author Tom Anderson
25-
* @param <E> the element type
26+
* @author Ronald Brill
2627
*/
2728
public interface DomNodeList<E extends DomNode> extends NodeList, List<E> {
2829
}

src/main/java/org/htmlunit/html/ElementFactory.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
*
2323
* @author Christian Sell
2424
* @author Ahmed Ashour
25+
* @author Ronald Brill
2526
*/
2627
public interface ElementFactory {
2728

src/main/java/org/htmlunit/html/ElementFromPointHandler.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
* {@code document.elementFromPoint()}.
2020
* <p>
2121
* This is needed since calculating the element location is outside the current scope of HtmlUnit.
22+
*
2223
* @author Ahmed Ashour
24+
* @author Ronald Brill
2325
*/
2426
public interface ElementFromPointHandler {
2527

src/main/java/org/htmlunit/html/HtmlAddress.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* @author Christian Sell
2727
* @author Ahmed Ashour
2828
* @author Frank Danek
29+
* @author Ronald Brill
2930
*/
3031
public class HtmlAddress extends HtmlElement {
3132

0 commit comments

Comments
 (0)