<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.oehive.org" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>The OpenEdge Hive - OO ABL Techniques discussion</title>
 <link>http://www.oehive.org/taxonomy/term/95/0</link>
 <description></description>
 <language>oehive</language>
<item>
 <title>CollectionClasses and iterating a List</title>
 <link>http://www.oehive.org/node/1344</link>
 <description>&lt;p&gt;Hey Thomas, can you take a look at this and tell me if this is how you intended for iteration through a List to be done? The objects &lt;code&gt;symbols&lt;/code&gt; and &lt;code&gt;childScopes&lt;/code&gt; are List objects. &lt;/p&gt;
&lt;pre&gt;
  METHOD PUBLIC VOID addSymbolsDeep(TABLE symbolRecord BIND):
    DEF VAR symbol AS CLASS Symbol NO-UNDO.
    symbols:getNthElement(0).
    DO WHILE symbols:hasNextElement():
      symbol = CAST(symbols:nextElement(), Symbol).
      CREATE symbolRecord.
      ASSIGN
          symbolRecord.symbol = symbol
          symbolRecord.progressType = symbol:getProgressType()
          .&lt;br class=&quot;clear&quot; /&gt;&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/ooabl&quot; class=&quot;og_links&quot;&gt;Object-Oriented ABL Techniques&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;http://www.oehive.org/node/1344&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.oehive.org/node/1344#comments</comments>
 <category domain="http://www.oehive.org/taxonomy/term/95">OO ABL Techniques discussion</category>
 <group domain="http://www.oehive.org/ooabl">Object-Oriented ABL Techniques</group>
 <pubDate>Thu, 25 Sep 2008 21:33:23 +0000</pubDate>
 <dc:creator>john2</dc:creator>
 <guid isPermaLink="false">1344 at http://www.oehive.org</guid>
</item>
<item>
 <title>Pdf include</title>
 <link>http://www.oehive.org/node/1213</link>
 <description>&lt;p&gt;Hi Guys,&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/ooabl&quot; class=&quot;og_links&quot;&gt;Object-Oriented ABL Techniques&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;http://www.oehive.org/node/1213&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.oehive.org/node/1213#comments</comments>
 <category domain="http://www.oehive.org/taxonomy/term/95">OO ABL Techniques discussion</category>
 <category domain="http://www.oehive.org/taxonomy/term/111">PDF Include</category>
 <category domain="http://www.oehive.org/taxonomy/term/158">PDF</category>
 <group domain="http://www.oehive.org/pdfinclude">PDF Include</group>
 <group domain="http://www.oehive.org/ooabl">Object-Oriented ABL Techniques</group>
 <pubDate>Wed, 09 Jul 2008 06:17:19 +0000</pubDate>
 <dc:creator>adamski</dc:creator>
 <guid isPermaLink="false">1213 at http://www.oehive.org</guid>
</item>
<item>
 <title>Reflection API in Progress 4GL</title>
 <link>http://www.oehive.org/node/1135</link>
 <description>&lt;p&gt;Hello! In our application we need some classes to be created only once. I will implement these classes as singletons (with the help of the static keyword in 10.1.C)&lt;/p&gt;
&lt;p&gt;&lt;code&gt;&lt;br /&gt;
 METHOD PUBLIC STATIC CLASS CLSBETaskUserBase getInstance():&lt;br /&gt;
        IF NOT VALID-OBJECT (clsBEModel) THEN&lt;br /&gt;
            clsBEModel = NEW CLSBETaskUserBase().&lt;br /&gt;
        RETURN CAST (clsBEModel, CLSBETaskUserBase).&lt;br /&gt;
    END METHOD.&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/ooabl&quot; class=&quot;og_links&quot;&gt;Object-Oriented ABL Techniques&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;http://www.oehive.org/node/1135&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.oehive.org/node/1135#comments</comments>
 <category domain="http://www.oehive.org/taxonomy/term/85">Hive group</category>
 <category domain="http://www.oehive.org/taxonomy/term/95">OO ABL Techniques discussion</category>
 <group domain="http://www.oehive.org/ooabl">Object-Oriented ABL Techniques</group>
 <pubDate>Mon, 07 Apr 2008 14:08:17 +0000</pubDate>
 <dc:creator>h_kos</dc:creator>
 <guid isPermaLink="false">1135 at http://www.oehive.org</guid>
</item>
<item>
 <title>Accessing global/shared variables inside a class</title>
 <link>http://www.oehive.org/node/1076</link>
 <description>&lt;p&gt;Hello!&lt;/p&gt;
&lt;p&gt;I try to refactor an existing source i.e. make a class out of it.&lt;br /&gt;
The problem is that the existing source accesses (and changes) global shared variables.&lt;/p&gt;
&lt;p&gt;When I create a class and want to reuse the existing code I get a problem because shared entities cannot be defined inside a class or interface. How can I access and change these global shared variables inside my class?&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/project/jqbridge&quot; class=&quot;og_links&quot;&gt;JQBridge&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;http://www.oehive.org/node/1076&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.oehive.org/node/1076#comments</comments>
 <category domain="http://www.oehive.org/taxonomy/term/95">OO ABL Techniques discussion</category>
 <category domain="http://www.oehive.org/taxonomy/term/432">shared variable class</category>
 <group domain="http://www.oehive.org/project/jqbridge">JQBridge</group>
 <pubDate>Wed, 19 Dec 2007 09:26:21 +0000</pubDate>
 <dc:creator>h_kos</dc:creator>
 <guid isPermaLink="false">1076 at http://www.oehive.org</guid>
</item>
<item>
 <title>PHP to Progress</title>
 <link>http://www.oehive.org/node/1019</link>
 <description>&lt;p&gt;I want to use odbc_connect() to connect my 10.1B Progress OE database.  I am getting &quot;Can&#039;t open lib &#039;/progress/dlc/odbc/lib/pgoe1022.sl&#039;&quot; error.  The database server and apache are all on the same server HP-UX.  Anybody had this working?&lt;/p&gt;
&lt;p&gt;thanks,&lt;/p&gt;
&lt;p&gt;G.&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;</description>
 <comments>http://www.oehive.org/node/1019#comments</comments>
 <category domain="http://www.oehive.org/taxonomy/term/95">OO ABL Techniques discussion</category>
 <category domain="http://www.oehive.org/taxonomy/term/416">PHP ODBC</category>
 <pubDate>Mon, 22 Oct 2007 20:00:50 +0000</pubDate>
 <dc:creator>GQ</dc:creator>
 <guid isPermaLink="false">1019 at http://www.oehive.org</guid>
</item>
<item>
 <title>Welcome to the OOABL forum!</title>
 <link>http://www.oehive.org/OOABLForum</link>
 <description>&lt;p&gt;Please feel free to make suggestions, requests, contributions.&lt;/p&gt;
&lt;br class=&quot;clear&quot; /&gt;&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li  class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/ooabl&quot; class=&quot;og_links&quot;&gt;Object-Oriented ABL Techniques&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <comments>http://www.oehive.org/OOABLForum#comments</comments>
 <category domain="http://www.oehive.org/taxonomy/term/95">OO ABL Techniques discussion</category>
 <group domain="http://www.oehive.org/ooabl">Object-Oriented ABL Techniques</group>
 <pubDate>Wed, 13 Sep 2006 22:52:02 +0000</pubDate>
 <dc:creator>tamhas</dc:creator>
 <guid isPermaLink="false">199 at http://www.oehive.org</guid>
</item>
</channel>
</rss>
