home *** CD-ROM | disk | FTP | other *** search
- // %PARAMETERS = "CH17LIST C:\UT2004"
- //Identifies the package
- //CH17_01LIST.uc
-
- class CH17_02LIST extends Commandlet;
-
- function int Main(string Args){
-
- //#1 declare an identifier of the Play type
- local Play firstPlay;
- //#2 create an instance of the class
- firstPlay = new class'Play';
-
- //#3 Retrieve name of class and packatge
- //and the class
- Log(Chr(10) $ " Structures to Classes" @ firstPlay.class $ Chr(10));
-
- //#4 Test the 10 member functions
- //Send message to and Receive message from
-
- firstPlay.setTitle("Prometheus Bound");
- Log(" Play title: " $ firstPlay.getTitle() );
-
- firstPlay.setAuthor("Aeschylus");
- Log(" Author of play: " $ firstPlay.getAuthor() );
-
- //#5 ineger value
- firstPlay.setCastNumber(8);
- Log(" Number of players: " $ firstPlay.getCastNumber() );
-
- firstPlay.setReference(40);
- Log(" Reference page: " $ firstPlay.getReference() );
-
- firstPlay.setPrimeChar("Prometheus");
- Log(" Primary character: " $ firstPlay.getPrimeChar() );
-
-
- return 0;
- }
-
-