java.lang.Object
com.e1c.langtool.internal.history.db.entity.Project

@Entity public class Project extends Object
Describes a translation projects. Every project entity has name, list of supported languages and list of translations that are associated with this project.
  • Constructor Details

    • Project

      public Project()
    • Project

      public Project(String name)
    • Project

      public Project(Long id, String name)
  • Method Details

    • getId

      public Long getId()
    • setId

      public void setId(Long id)
    • getName

      public String getName()
    • setName

      public void setName(String name)
    • getTranslations

      public List<Translation> getTranslations()
    • setTranslations

      public void setTranslations(List<Translation> translations)
    • getLanguages

      public List<Language> getLanguages()
    • setLanguages

      public void setLanguages(List<Language> languages)
    • toString

      public String toString()
      Overrides:
      toString in class Object