<?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 Re: visibility in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/visibility/m-p/2392901#M532306</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sandeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      before using these KeyWords  we need to think that,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  How much secure you need to keep the data ,which we are going to keep in that variables or  the functionality of  methods,  from other programs.Finally depends on the confidentiality of  data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Private/protect--are secured&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;public --is global.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls.  reward if useful....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jun 2007 03:48:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-19T03:48:00Z</dc:date>
    <item>
      <title>visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visibility/m-p/2392899#M532304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what are mandatory things we have to follow in a program while using keywords  public,private,protected&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 07:46:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visibility/m-p/2392899#M532304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-18T07:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visibility/m-p/2392900#M532305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should set protected /if you have subclasses/ or private as much method and attributes as possible. Especially if they are used in another method and not meant to call/use from otuside.&lt;/P&gt;&lt;P&gt;Everything you want to use outside of the class should be public.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 07:59:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visibility/m-p/2392900#M532305</guid>
      <dc:creator>Peter_Inotai</dc:creator>
      <dc:date>2007-06-18T07:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visibility/m-p/2392901#M532306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sandeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      before using these KeyWords  we need to think that,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  How much secure you need to keep the data ,which we are going to keep in that variables or  the functionality of  methods,  from other programs.Finally depends on the confidentiality of  data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Private/protect--are secured&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;public --is global.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls.  reward if useful....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 03:48:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visibility/m-p/2392901#M532306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T03:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visibility/m-p/2392902#M532307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Classes are broadly classified into three types :&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;PUBLIC CLASS &lt;/P&gt;&lt;P&gt;This class is created using the addition CREATE PUBLIC to the class definition statement.&lt;/P&gt;&lt;P&gt;This class can be instantiated by the User, by the Own Class and by the Subclasses&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROTECTED CLASS &lt;/P&gt;&lt;P&gt;This class is created using the addition CREATE PROTECTED to the class definition statement.&lt;/P&gt;&lt;P&gt;This class can be instantiated only by the Own Class and by the Subclasses.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRIVATE CLASS&lt;/P&gt;&lt;P&gt;This class is created using the addition CREATE PRIVATE to the class definition statement.&lt;/P&gt;&lt;P&gt;This class can be instantiated only by the Own Class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Visibility of Components of Class&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;PUBLIC SECTION : The components in this section are visible to everybody, i.e. users, its own methods and its subclasses.&lt;/P&gt;&lt;P&gt;    Therefore, public components form the external interface between the class and its users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROTECTED SECTION :  The components are visible to the methods of the class and its subclasses.&lt;/P&gt;&lt;P&gt;    Therefore, it forms a special interface between the class and its subclasses.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRIVATE SECTION : Here, components are only visible to its own method.&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;A section may or may not be present, but whatever sections are present they should come in the same above order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Azaz Ali.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 09:15:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visibility/m-p/2392902#M532307</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T09:15:30Z</dc:date>
    </item>
  </channel>
</rss>

