Skip to content
Snippets Groups Projects
Staff.java 2.50 KiB
public class Staff {
    public Employee rairai77() {
        return new Employee(
            "Raahil Jain",
            "Student",
            "Sleepy",
            "snorlax.png",
            "A snorlax sitting"
        );
    } 
    public Employee faangPup() {
        return new Employee(
          "Steve",
          "Company Pup",
          "Provides Moral Support",
          "pup.jpg",
          "the goodest boi"
        );
    }

    public Employee cjobes() {
      return new Employee(
        "Colton",
        "Lead Naps Analyst",
        "What do you mean I'm not valuable to the company?",
        "colton.jpg",
        "Colton smiling with a forest in the background"
      );
    }

    public Employee mxw() {
      return new Employee(
          "Matt",
          "candy thrower",
          "tired",
          "matt.png",
          "matt smiling in front of a polka-dotted wall."
      );
    }

    public Employee antonio6() {
	    return new Employee(
        "Antonio",
        "Teaching Assistant",
        "Tries to help",
        "void.jpg",
	"My favorite plushie void the demodog chillin on the floor"
      );
    }

    public Employee idelong() {
      return new Employee(
        "Ian",
        "Bug Creator",
        "Makes lots of bugs",
        "alpaca.jpg",
        "Alpaca with dandelion hair"
      );
    }

    public Employee pbui27() {
      return new Employee(
        "Peter",
        "Janitor",
        "cleaning up code",
        "pbui27.jpg",
        "Peter as a baby"
      );
    }
    
    public Employee agummadi() {
      return new Employee(
        "Arya",
	"Student",
	"studies",
	"arya.png",
	"just an image"
      );
   }

    public Employee tuongcat() {
        return new Employee(
            "Cat",
            "student",
            "studies",
            "panda.jpg",
            "panda icon"
        );
    }

    public Employee kgrao() {
	return new Employee(
	    "Rao",
	    "Student",
	    "studies",
	    "rao.jpg",
	    "A dog!"
	);
    }

    public Employee isaacwu() {
        return new Employee(
	    "Isaac",
	    "Programmer",
	    "Can I go to sleep now?",
	    "icon.jpeg",
	    "angrily studying"
       );
    }

    public Employee aamangus() {
    	return new Employee(
		"Anthony",
		"Student",
		"studies",
		"Discord Chicken.PNG",
		"funny chicken"
	);
    }

    public Employee dhvbnl() {
    	return new Employee(
		"dhruv",
		"tech student",
		"breaking things that work, making things that break",
		"dhvbnl.jpg",
		"pillow representing dhruv"	
	);
    }
}