diff --git a/src/service/content/cms_partial_content.e b/src/service/content/cms_partial_content.e index 8b114b0..4c37ea1 100644 --- a/src/service/content/cms_partial_content.e +++ b/src/service/content/cms_partial_content.e @@ -26,6 +26,9 @@ feature {NONE} -- Initialization feature -- Access + identifier: detachable READABLE_STRING_32 + -- + title: detachable READABLE_STRING_32 -- Title associated with Current content. @@ -42,6 +45,15 @@ feature -- Access feature -- Element change + set_identifier (a_identifier: detachable READABLE_STRING_GENERAL) + do + if a_identifier = Void then + identifier := Void + else + create {IMMUTABLE_STRING_32} identifier.make_from_string_general (a_identifier) + end + end + set_title (a_title: detachable READABLE_STRING_GENERAL) do if a_title = Void then