16 lines
337 B
Java
16 lines
337 B
Java
/*
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Interface.java to edit this template
|
|
*/
|
|
package DAO;
|
|
|
|
/**
|
|
*
|
|
* @author caleb
|
|
*/
|
|
public interface Keyable<K> {
|
|
public K getKey();
|
|
public void setKey(K key);
|
|
|
|
}
|