<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic abap oo constructor prob in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992260#M1605698</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;data: g_dock type ref to cl_gui_docking_container,
        g_split type ref to cl_gui_easy_splitting_container,
        g_cont type ref to cl_gui_container.
 
create object g_dock       " this is a constructor
  exporting
     *side = cl_gui_docking_container=&amp;gt;dock_at_top*      ..... "pls explain this syntax in general
extension = 200.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'dock_at_top'  is a constant in the attributes component of the class  'cl_gui_docking_container'.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.) we are already creating an instance of this class as  'g_dock'.&lt;/P&gt;&lt;P&gt;so instead of writing  '&lt;STRONG&gt;g_dock -&amp;gt; dock_at_top&lt;/STRONG&gt;',  why are we using  ' &lt;U&gt;cl&lt;/U&gt;gui_docking_container=&amp;gt;dock_at_top_ '. pls explain this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.) pls clarify 1 thing ....the syntax ...   &lt;/P&gt;&lt;P&gt;"create object g_dock &lt;/P&gt;&lt;P&gt; exporting &lt;/P&gt;&lt;P&gt;     .........  "&lt;/P&gt;&lt;P&gt; it is a constructor method, so why are we writing   &lt;STRONG&gt;'cl_gui_docking_container=&amp;gt;dock_at_top'&lt;/STRONG&gt;  instead of writing  only &lt;STRONG&gt;'dock_at_top'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls help.&lt;/P&gt;&lt;P&gt;detailed answers will be appreciated, thnks in adv&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Jun 2011 19:56:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-06-03T19:56:30Z</dc:date>
    <item>
      <title>abap oo constructor prob</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992260#M1605698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;data: g_dock type ref to cl_gui_docking_container,
        g_split type ref to cl_gui_easy_splitting_container,
        g_cont type ref to cl_gui_container.
 
create object g_dock       " this is a constructor
  exporting
     *side = cl_gui_docking_container=&amp;gt;dock_at_top*      ..... "pls explain this syntax in general
extension = 200.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'dock_at_top'  is a constant in the attributes component of the class  'cl_gui_docking_container'.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.) we are already creating an instance of this class as  'g_dock'.&lt;/P&gt;&lt;P&gt;so instead of writing  '&lt;STRONG&gt;g_dock -&amp;gt; dock_at_top&lt;/STRONG&gt;',  why are we using  ' &lt;U&gt;cl&lt;/U&gt;gui_docking_container=&amp;gt;dock_at_top_ '. pls explain this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.) pls clarify 1 thing ....the syntax ...   &lt;/P&gt;&lt;P&gt;"create object g_dock &lt;/P&gt;&lt;P&gt; exporting &lt;/P&gt;&lt;P&gt;     .........  "&lt;/P&gt;&lt;P&gt; it is a constructor method, so why are we writing   &lt;STRONG&gt;'cl_gui_docking_container=&amp;gt;dock_at_top'&lt;/STRONG&gt;  instead of writing  only &lt;STRONG&gt;'dock_at_top'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls help.&lt;/P&gt;&lt;P&gt;detailed answers will be appreciated, thnks in adv&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2011 19:56:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992260#M1605698</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-03T19:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: abap oo constructor prob</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992261#M1605699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Within an instance of the docking container class itself the constant DOCK_AT_TOP is known.&lt;/P&gt;&lt;P&gt;The piece of coding is presumably within the CONSTRUCTOR method of a (any) Z-class. Therefore, the constant DOCK_AT_TOP must be references as part of its class, i.e. CL_GUI_DOCKING_CONTAINER=&amp;gt;DOCK_AT_TOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;   Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2011 21:01:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992261#M1605699</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2011-06-03T21:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: abap oo constructor prob</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992262#M1605700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am new  to oo abap, so kindly elaborate pls....&lt;/P&gt;&lt;P&gt;                   &lt;/P&gt;&lt;P&gt;constructors are called by the system whenever an object instance to a class is created,  so why are we needing this class reference  ( side = cl_gui_docking_container =&amp;gt; dock_at_top  ) here ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2011 22:24:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992262#M1605700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-03T22:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: abap oo constructor prob</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992263#M1605701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;cl_gui_docking_container =&amp;gt; dock_at_top is a constant. It has a value. It doesn't matter what the value is, but lets say that, for the sake of example, it's 3. Now, which is more meaningful?&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;create object g_dock       " this is a constructor
  exporting
     side = 3&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; or &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;create object g_dock       " this is a constructor
  exporting
     side = cl_gui_docking_container=&amp;gt;dock_at_top&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jun 2011 06:41:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992263#M1605701</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2011-06-04T06:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: abap oo constructor prob</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992264#M1605702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is beacuse your object reference &lt;EM&gt;g_dock&lt;/EM&gt; will be instantiated (in client program) only AFTER exection of CREATE OBJECT statement, not during this statement. So later on you will indeed be able to access this constant the way you are trying, but BEFORE that this is not possible as object reference at that time is "pointing" to nothing. That's why you need to use class name in order to address constants. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more reason and I think good practise is that all static or constant attributes should be accessed in this manner. This uniform notation provides a clear view for someone who doesn't know your code what are you in fact addressing. By using object reference it is ambigous whether underneath you access an instance/static/constant one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jun 2011 06:43:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992264#M1605702</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2011-06-04T06:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: abap oo constructor prob</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992265#M1605703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Because it is a must have property for the instance. However it could be optional since you give a default value for the property.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jun 2011 06:46:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992265#M1605703</guid>
      <dc:creator>huseyindereli</dc:creator>
      <dc:date>2011-06-04T06:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: abap oo constructor prob</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992266#M1605704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THNK U ALL..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls clear this doubt..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  when i create the object instance for the very first time..the constant appears as 'dock_at_left'  by default. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: g_dock type ref to cl_gui_docking_container,
        g_split type ref to cl_gui_easy_splitting_container,
        g_cont type ref to cl_gui_container.
 
create object g_dock       " this is a constructor
  exporting
     *side = dock_at_left*     ..."this comes as default
extension = 200.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but since i know that its a &lt;U&gt;constant&lt;/U&gt; i write it as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   &lt;STRONG&gt;side = cl_gui_docking_container=&amp;gt;dock_at_top&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but  since i am new to oo abap, i am unfamiliar to most of the class and its components, then how will i come to know dat where  the coding will get changed similarly .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Jun 2011 05:57:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992266#M1605704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-05T05:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: abap oo constructor prob</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992267#M1605705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;but since i am new to oo abap, i am unfamiliar to most of the class and its components, then how will i come to know dat where the coding will get changed similarly .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;- by reading papers, articles, blogs&lt;/P&gt;&lt;P&gt;- by searching the forum&lt;/P&gt;&lt;P&gt;- by reviewing sources of SAP tutorial programs&lt;/P&gt;&lt;P&gt;- by reviewing different classes&lt;/P&gt;&lt;P&gt;- by gaining experience&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Jun 2011 08:33:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992267#M1605705</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2011-06-05T08:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: abap oo constructor prob</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992268#M1605706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Clarification,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;By saying &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CREATE OBJECT &amp;lt;object_name&amp;gt;
                   EXPORTING 
                       &amp;lt;par1&amp;gt; = &amp;lt;val&amp;gt;
                       &amp;lt;par2&amp;gt; = &amp;lt;val&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What we are doing here is instanciate an object and send the constructor values that it is expecting on the constructor's import section, if we did not have paramaters expected on the constructor of class &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;cl_gui_docking_container&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;we would just say &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CREATE OBJECT &amp;lt;object_name&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*as for * &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;cl_gui_docking_container=&amp;gt;dock_at_top&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could just have &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DOCK_AT_TOP&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; alone if you want, but, yes there is a but!&lt;/P&gt;&lt;P&gt;It will come back to bite you, why, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class components are defined in terms of a given class &lt;/P&gt;&lt;P&gt;and most probably donu2019t have a lot of meaning outside of their defining classu2019s context. To avoid this kind of confusion, it is recommended that you always address class components by applying the class component selector to the defining&lt;/P&gt;&lt;P&gt;classu2019s name. Therefore, &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;cl_gui_docking_container=&amp;gt;dock_at_top&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; instead of just &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;dock_at_top&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;That way, your intentions are always clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this makes sence.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2011 10:05:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992268#M1605706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-06T10:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: abap oo constructor prob</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992269#M1605707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Akash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The replies to your question are good, in case you are not clear, let me try my bit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.) we are already creating an instance of this class as 'g_dock'.&lt;/P&gt;&lt;P&gt;so instead of writing '&lt;STRONG&gt;g_dock -&amp;gt; dock_at_top&lt;/STRONG&gt;', why are we using ' &lt;U&gt;cl&lt;/U&gt;gui_docking_container=&amp;gt;dock_at_top_ '. pls explain this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You mean to say something like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: g_dock type ref to cl_gui_docking_container,
        g_split type ref to cl_gui_easy_splitting_container,
        g_cont type ref to cl_gui_container.
 
create object g_dock       " this is a constructor
  exporting
     *side = g_dock=&amp;gt;dock_at_top*      ..... "pls explain this syntax in general
extension = 200.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well, as Marcin said object G_DOCK is not yet created at this point, so it is not possible to get a reference to any of it's attributes(constant/static/instance), when you try to compile the above code it will throw a compile error that g_dock=&amp;gt;dock_at_top is not known. Now if your question is how "cl_gui_docking_container=&amp;gt;dock_at_top" is valid syntax, the compiler checks if the global class "cl_gui_docking_container" exists and if yes, then checks for a constant attribute "DOCK_AT_TOP" within it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.) pls clarify 1 thing ....the syntax ...&lt;/P&gt;&lt;P&gt;"create object g_dock&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;......... "&lt;/P&gt;&lt;P&gt;it is a constructor method, so why are we writing 'cl_gui_docking_container=&amp;gt;dock_at_top' instead of writing only 'dock_at_top'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, "DOCK_AT_TOP" doesn't have any existence on its own, an attribute irrespective of whether it is constant/static/instance...will always be accessed via it's class reference, and again you cannot use g_dock until it's instance &lt;STRONG&gt;has&lt;/STRONG&gt; been created already, not while creating it's instance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure if i understood your doubt in the above post, the parameter &lt;STRONG&gt;SIDE&lt;/STRONG&gt; of the constructor let's you choose where do you want the container to show up top, left, bottom etc...by default it will be left, so if you do not pass anything to the parameter side, it will be created on the left. Now if you want it to be in any other place other than left then you have to specify the same by passing the corresponding value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@TREASURE - My understanding is that the below is incorrect, and would hold good only within the class and not outside of it.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could just have&lt;/P&gt;&lt;P&gt;DOCK_AT_TOP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Chen K V on Jun 6, 2011 4:54 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Chen K V on Jun 6, 2011 4:56 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2011 11:23:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oo-constructor-prob/m-p/7992269#M1605707</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-06T11:23:02Z</dc:date>
    </item>
  </channel>
</rss>

