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

me.hsgamer.hscore.database.BaseClient Maven / Gradle / Ivy

There is a newer version: 4.3.29
Show newest version
package me.hsgamer.hscore.database;

/**
 * An abstraction of {@link Client} with {@link Setting}
 *
 * @param  the original
 */
public abstract class BaseClient implements Client {
  /**
   * The setting
   */
  protected final Setting setting;

  /**
   * Create a new client
   *
   * @param setting the setting
   */
  protected BaseClient(Setting setting) {
    this.setting = setting;
  }

  @Override
  public Setting getSetting() {
    return setting;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy