X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=crawler%2Fkiss%2Fsrc%2Forg%2Fwamblee%2Fcrawler%2Fkiss%2Fguide%2FProgram.java;fp=crawler%2Fkiss%2Fsrc%2Forg%2Fwamblee%2Fcrawler%2Fkiss%2Fguide%2FProgram.java;h=9f63ac4e1f6ca3477999846d56c6ed3c86b1a65a;hb=91baa008630410a458f0e87e20458bfb3d5b6f3b;hp=241089b1e7de507d8189a1f1081f386d6ad2eb04;hpb=9e7f6213cb932e98233aedb0e7c22e0fe0cd54a8;p=utils diff --git a/crawler/kiss/src/org/wamblee/crawler/kiss/guide/Program.java b/crawler/kiss/src/org/wamblee/crawler/kiss/guide/Program.java index 241089b1..9f63ac4e 100644 --- a/crawler/kiss/src/org/wamblee/crawler/kiss/guide/Program.java +++ b/crawler/kiss/src/org/wamblee/crawler/kiss/guide/Program.java @@ -93,42 +93,27 @@ public class Program { /** * 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; }; /**