Difference between revisions of "Object Oriented Programming"

esse quam videri
Jump to: navigation, search
Line 25: Line 25:
 
import java.util.*;  
 
import java.util.*;  
 
</java>
 
</java>
 +
 +
 +
<code> /*
 +
 +
* Algernon - a rule-based inference engine in Java.
 +
* http://algernon-j.sourceforge.net/
 +
*
 +
* This example shows how to open a Protege knowledge base
 +
* in Java and use Algernon to query the KB.
 +
*
 +
* To run it, be sure to change the path in NEWSPAPER_PROJECT
 +
* to match the correct project on your system.
 +
*
 +
* Micheal Hewett
 +
* 05 May 2004
 +
* hewett@cs.stanford.edu
 +
*/
 +
 +
package org.algernon.test;
 +
 +
import java.util.*;
 +
</code>

Revision as of 18:22, 6 January 2006

Programming Object Oriented Programming

I can't get syntax highlight to work in the wiki bahhh

please see http://iam.colum.edu/oop

Syntax Highlighting Test

<java> /*

  • Algernon - a rule-based inference engine in Java.
  • http://algernon-j.sourceforge.net/
  • This example shows how to open a Protege knowledge base
  • in Java and use Algernon to query the KB.
  • To run it, be sure to change the path in NEWSPAPER_PROJECT
  • to match the correct project on your system.
  • Micheal Hewett
  • 05 May 2004
  • hewett@cs.stanford.edu
  • /

package org.algernon.test;

import java.util.*; </java>


/*

  • Algernon - a rule-based inference engine in Java.
  • http://algernon-j.sourceforge.net/
  • This example shows how to open a Protege knowledge base
  • in Java and use Algernon to query the KB.
  • To run it, be sure to change the path in NEWSPAPER_PROJECT
  • to match the correct project on your system.
  • Micheal Hewett
  • 05 May 2004
  • hewett@cs.stanford.edu
  • /

package org.algernon.test;

import java.util.*;