All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.telegram.telegrambots.abilitybots.api.db.Var Maven / Gradle / Ivy

There is a newer version: 7.10.0
Show newest version
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