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

com.wci.umls.server.helpers.HasLanguage Maven / Gradle / Ivy

/**
 * Copyright 2015 West Coast Informatics, LLC
 */
/*************************************************************
 * HasLanguage: HasLanguage.java
 * Last Updated: Feb 27, 2009
 *************************************************************/
package com.wci.umls.server.helpers;

import com.wci.umls.server.model.meta.Language;

/**
 * Represents a thing that is associated with a {@link Language}
 */
public interface HasLanguage {

  /**
   * Returns the language.
   * 
   * @return the language
   */
  public Language getLanguage();

  /**
   * Sets the language
   * 
   * @param language the language
   */
  public void setLanguage(Language language);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy