Skip to content

Commit 931fe0b

Browse files
committed
improved jdoc
1 parent a69bbaf commit 931fe0b

12 files changed

Lines changed: 38 additions & 0 deletions

src/main/java/org/htmlunit/javascript/host/media/BiquadFilterNode.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,15 @@
2222
*
2323
* @author Ahmed Ashour
2424
* @author Ronald Brill
25+
*
26+
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode">MDN Documentation</a>
2527
*/
2628
@JsxClass
2729
public class BiquadFilterNode extends AudioNode {
2830

2931
/**
3032
* Creates an instance.
33+
* @param baCtx the required audio context
3134
*/
3235
@Override
3336
@JsxConstructor

src/main/java/org/htmlunit/javascript/host/media/ChannelMergerNode.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,15 @@
2222
*
2323
* @author Ahmed Ashour
2424
* @author Ronald Brill
25+
*
26+
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/ChannelMergerNode">MDN Documentation</a>
2527
*/
2628
@JsxClass
2729
public class ChannelMergerNode extends AudioNode {
2830

2931
/**
3032
* Creates an instance.
33+
* @param baCtx the required audio context
3134
*/
3235
@Override
3336
@JsxConstructor

src/main/java/org/htmlunit/javascript/host/media/ChannelSplitterNode.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,15 @@
2222
*
2323
* @author Ahmed Ashour
2424
* @author Ronald Brill
25+
*
26+
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/ChannelSplitterNode">MDN Documentation</a>
2527
*/
2628
@JsxClass
2729
public class ChannelSplitterNode extends AudioNode {
2830

2931
/**
3032
* Creates an instance.
33+
* @param baCtx the required audio context
3134
*/
3235
@Override
3336
@JsxConstructor

src/main/java/org/htmlunit/javascript/host/media/ConstantSourceNode.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,15 @@
2323
*
2424
* @author Ahmed Ashour
2525
* @author Ronald Brill
26+
*
27+
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/ConstantSourceNode">MDN Documentation</a>
2628
*/
2729
@JsxClass
2830
public class ConstantSourceNode extends AudioScheduledSourceNode {
2931

3032
/**
3133
* Creates an instance.
34+
* @param baCtx the required audio context
3235
*/
3336
@Override
3437
@JsxConstructor

src/main/java/org/htmlunit/javascript/host/media/ConvolverNode.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,15 @@
2222
*
2323
* @author Ahmed Ashour
2424
* @author Ronald Brill
25+
*
26+
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/ConvolverNode">MDN Documentation</a>
2527
*/
2628
@JsxClass
2729
public class ConvolverNode extends AudioNode {
2830

2931
/**
3032
* Creates an instance.
33+
* @param baCtx the required audio context
3134
*/
3235
@Override
3336
@JsxConstructor

src/main/java/org/htmlunit/javascript/host/media/DelayNode.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,15 @@
2222
*
2323
* @author Ahmed Ashour
2424
* @author Ronald Brill
25+
*
26+
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/DelayNode">MDN Documentation</a>
2527
*/
2628
@JsxClass
2729
public class DelayNode extends AudioNode {
2830

2931
/**
3032
* Creates an instance.
33+
* @param baCtx the required audio context
3134
*/
3235
@Override
3336
@JsxConstructor

src/main/java/org/htmlunit/javascript/host/media/DynamicsCompressorNode.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,15 @@
2222
*
2323
* @author Ahmed Ashour
2424
* @author Ronald Brill
25+
*
26+
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode">MDN Documentation</a>
2527
*/
2628
@JsxClass
2729
public class DynamicsCompressorNode extends AudioNode {
2830

2931
/**
3032
* Creates an instance.
33+
* @param baCtx the required audio context
3134
*/
3235
@Override
3336
@JsxConstructor

src/main/java/org/htmlunit/javascript/host/media/GainNode.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,18 @@
2323
*
2424
* @author Ahmed Ashour
2525
* @author Ronald Brill
26+
*
27+
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/GainNode">MDN Documentation</a>
2628
*/
2729
@JsxClass
2830
public class GainNode extends AudioNode {
2931

3032
private AudioParam gain_;
3133

34+
/**
35+
* Creates an instance.
36+
* @param baCtx the required audio context
37+
*/
3238
@Override
3339
@JsxConstructor
3440
public void jsConstructor(final Object baCtx) {
@@ -42,6 +48,7 @@ public void jsConstructor(final Object baCtx) {
4248
}
4349

4450
/**
51+
* Returns an a-rate AudioParam representing the amount of gain to apply.
4552
* @return an a-rate AudioParam representing the amount of gain to apply.
4653
*/
4754
@JsxGetter

src/main/java/org/htmlunit/javascript/host/media/IIRFilterNode.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,15 @@
2222
*
2323
* @author Ahmed Ashour
2424
* @author Ronald Brill
25+
*
26+
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/IIRFilterNode">MDN Documentation</a>
2527
*/
2628
@JsxClass
2729
public class IIRFilterNode extends AudioNode {
2830

2931
/**
3032
* Creates an instance.
33+
* @param baCtx the required audio context
3134
*/
3235
@Override
3336
@JsxConstructor

src/main/java/org/htmlunit/javascript/host/media/InputDeviceCapabilities.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
*
2727
* @author Ahmed Ashour
2828
* @author Ronald Brill
29+
*
30+
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/InputDeviceCapabilities">MDN Documentation</a>
2931
*/
3032
@JsxClass({CHROME, EDGE})
3133
public class InputDeviceCapabilities extends HtmlUnitScriptable {

0 commit comments

Comments
 (0)