org.telegram.telegrambots.abilitybots.api.db.Var Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegrambots-abilities Show documentation
Show all versions of telegrambots-abilities Show documentation
AbilityBot Extension and Abstraction
package org.telegram.telegrambots.abilitybots.api.db;
/**
* The interface governing a variable for abstract getters and setters.
* @param the type of the variable
*
* @author Abbas Abou Daya
*/
public interface Var {
/**
* @return the variable contained
*/
T get();
/**
* @param var the new variable value
*/
void set(T var);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy