program define Library file "C:\Oberon\source\Library.java"
description "Library program" ;
program define PRG01 file "C:\Oberon\source\MioCodiceExt.java"
description "Extended PRG" !hidden ;
program clone PRG01 define PRG02 description "Ext PRG2"
source "import com.oberon.ooql.sdk.*;
import java.util.*;
public class <CLASSNAME> <EXTEND=Library> {
public Framework OberonMain(Vector vArgs,Framework framework)
throws OberonException { ... }";
program show PRG02 token xml exportfile "C:\Oberon\xml\PRG02.xml";
program show PRG01 get { description source feature.{ name
value to.name to.type } } token { "|" ","
";" } ;
program compile P* force;
program select * get { name description javaclass superprogram.{name
description} } token { "|" ";" ","
} ;
|