UserInfo
parent
88c6cbe664
commit
12c71afac1
|
@ -0,0 +1,5 @@
|
|||
package domain;
|
||||
|
||||
public class Chatmanager {
|
||||
|
||||
}
|
|
@ -1,6 +1,19 @@
|
|||
package domain;
|
||||
|
||||
public enum UserInfo {
|
||||
VERFÜGBAR,BESCHÄFTIGT,IN_DER_SCHULE,IM_KINO,BEI_DER_ARBEIT,AKKU_FAST_LEER,SCHLAFE;
|
||||
VERFÜGBAR,BESCHÄFTIGT,IN_DER_SCHULE,IM_KINO,BEI_DER_ARBEIT,AKKU_FAST_LEER,SCHLAFE,
|
||||
CUSTOM; // Sonderfall für freie Texteingabe
|
||||
|
||||
private String customValue;
|
||||
|
||||
public void setCustomValue(String value) {
|
||||
if (this == CUSTOM) {
|
||||
this.customValue = value;
|
||||
}
|
||||
}
|
||||
|
||||
public String getCustomValue() {
|
||||
return customValue;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
package domain;
|
||||
|
||||
public class Usermanager {
|
||||
|
||||
}
|
Loading…
Reference in New Issue