Java: Add backwards compat shims for array types.

This commit is contained in:
Peter Johnson
2015-08-28 21:09:46 -07:00
parent dbe4168d8d
commit 1ca0157768
6 changed files with 126 additions and 0 deletions

View File

@@ -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