Back to project page improv-referee.
The source code is released under:
Copyright (C) <2011> by <Pierre-Henri Trivier> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to de...
If you think the Android project improv-referee listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package fr.pht.improv.model; //w w w . j a v a 2s . c om public class Improv { private ImprovType type; private String title; private int playerCount; private int duration; private String category; public ImprovType getType() { return type; } public void setType(ImprovType type) { this.type = type; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public int getPlayerCount() { return playerCount; } public void setPlayerCount(int playerCount) { this.playerCount = playerCount; } /** * Duration of the improv, in seconds. * @return */ public int getDuration() { return duration; } /** * Duration of the improv, in seconds. * @param duration */ public void setDuration(int duration) { this.duration = duration; } public String getCategory() { return category; } public void setCategory(String category) { this.category = category; } }