mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Java: Add backwards compat shims for array types.
This commit is contained in:
@@ -49,6 +49,16 @@ public interface ITable {
|
||||
public void putValue(String key, Object value)
|
||||
throws IllegalArgumentException;
|
||||
|
||||
/**
|
||||
* Retrieve an array data type from the table.
|
||||
* @param key the key to be assigned to
|
||||
* @param externalValue the array data type to retreive into
|
||||
* @throws TableKeyNotDefinedException if there is no value associated with
|
||||
* the given key
|
||||
* @deprecated Use get*Array functions instead.
|
||||
*/
|
||||
public void retrieveValue(String key, Object externalValue) throws TableKeyNotDefinedException;
|
||||
|
||||
/**
|
||||
* Put a number in the table
|
||||
* @param key the key to be assigned to
|
||||
|
||||
Reference in New Issue
Block a user