comparison mde/content/IContent.d @ 163:24d77c52243f

Provided sensible conversions for setting the value of one AStringContent from another, along with unittest. Updated layout and Translation unittests to run.
author Diggory Hardy <diggory.hardy@gmail.com>
date Sat, 23 May 2009 15:47:32 +0200
parents 2476790223b8
children 620d4ea30228
comparison
equal deleted inserted replaced
162:2476790223b8 163:24d77c52243f
44 /** Generic way to set content value. 44 /** Generic way to set content value.
45 * 45 *
46 * If cont's type is compatible, the method should set its instance's 46 * If cont's type is compatible, the method should set its instance's
47 * value to that of cont and return true, otherwise it should return false. 47 * value to that of cont and return true, otherwise it should return false.
48 */ 48 */
49 bool setContent (IContent); 49 bool set (IContent);
50 } 50 }
51 51