/**
* Successfully recorded.
*/
- OK("Successfully recorded programs"),
+ OK,
/**
* Already recorded program.
*/
- DUPLICATE("Already recorded programs"),
+ DUPLICATE,
/**
* Recording conflict with another program.
*/
- CONFLICT("Programs in conflict with another recorded program"),
+ CONFLICT,
/**
* Program occurred in the past.
*/
- OLDSHOW("Programs that occurred in the past"),
+ OLDSHOW,
/**
* Program could not be recorded for technical reasons.
*/
- ERROR("Programs that could not be recorded for technical reasons");
-
- private String _description;
-
- private RecordingResult(String aDescription) {
- _description = aDescription;
- }
-
- /**
- * Gets the description.
- *
- * @return Description.
- */
- public String getDescription() {
- return _description;
- }
+ ERROR;
};
/**