Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Max Mecklin / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya
  • ..
  • enums
  • ActionLogMessageState.java
  • Tuukka Kivilahti's avatar
    ulkoasuistua · de8be004
    Tuukka Kivilahti committed Jan 04, 2014
    de8be004
ActionLogMessageState.java 238 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package fi.codecrew.moya.enums;

public enum ActionLogMessageState {
	NEW,
	PENDING,
	DONE;
	
	public String getKey(){
		return "actionlog.messagestate." + name();
	}
	
	public String getName() {
		return name();
	}
	

}