Skip to content

Commit 79d46f9

Browse files
committed
jsdocs
1 parent 0632df0 commit 79d46f9

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ allprojects {
2121
}
2222
}
2323

24-
def WPILIB_VER = '2019.1.1'
24+
def WPILIB_VER = '2019.2.1'
2525
def NTCORE_VER = WPILIB_VER
2626
def OPENCV_VER = '3.4.4-4'
2727
def WPIUTIL_VER = WPILIB_VER

src/main/java/org/hyperonline/hyperlib/vision/AbstractTargetProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ protected T getLastResult(){
3131

3232
/**
3333
*
34-
* @param targets
34+
* @param targets The list of targets found.
3535
*/
3636
@Override
3737
public final void process(List<Rect> targets) {

src/main/java/org/hyperonline/hyperlib/vision/AbstractVisionConnector.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,11 @@ protected VisionResult retrieve() {
117117
/**
118118
* evaluate and process the results in NetworkTables to my lastResult
119119
*
120-
* @param table
121-
* @param key
122-
* @param entry
123-
* @param value
124-
* @param flags
120+
* @param table NetworkTable to get values from
121+
* @param key Key of the entry that triggered the Listener
122+
* @param entry Entry that was updated
123+
* @param value the new Value
124+
* @param flags Listener flags (created, updated, removed, etc)
125125
*/
126126
protected abstract void next(NetworkTable table, String key, NetworkTableEntry entry,
127127
NetworkTableValue value, int flags);

src/main/java/org/hyperonline/hyperlib/vision/BasicVisionConnector.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,7 @@ public BasicVisionConnector(String subTableName, NetworkTableInstance inst) {
2222
}
2323

2424
/**
25-
* @param table
26-
* @param key
27-
* @param entry
28-
* @param value
29-
* @param flags
25+
* {@inheritDoc}
3026
*/
3127
@Override
3228
protected void next(NetworkTable table, String key, NetworkTableEntry entry, NetworkTableValue value, int flags) {

0 commit comments

Comments
 (0)