Skip to content
Snippets Groups Projects
Select Git revision
  • 00d017b871702b0e35cb7adaccb9f07497a749bc
  • master default protected
  • revert-d81c9d6d
3 results

DrawerWithSave.java

Blame
  • Forked from COUETOUX Basile / graphic-2020
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    monkey.js 647 B
    class Monkey {
        constructor(id, name, speciesId, sex, age, birthLoc, liveLoc) {
            this.id = id;
            this.name = name;
            this.speciesId = speciesId;
            this.sex = sex;
            this.age = age;
            this.birthLoc = birthLoc;
            this.liveLoc = liveLoc;
        }
    
        getId() {
            return this.id;
        }
    
        getName() {
            return this.name;
        }
    
        getSpeciesId() {
            return this.speciesId;
        }
    
        getSex() {
            return this.sex;
        }
    
        getAge() {
            return this.age;
        }
    
        getBirthLoc() {
            return this.birthLoc;
        }
    
        getLiveLoc() {
            return this.liveLoc;
        }
    }