home *** CD-ROM | disk | FTP | other *** search
- // %PARAMETERS = "CH17LIST C:\UT2004"
- //Identifies the package
- //UtilityTestClass.uc
-
- class UtilityTestClass 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 through the new keyword
-
- firstPlay = new class'Play';
-
- //#3 firstPlay.class provides you with the name of the package
- //and the class
-
- Log(Chr(10) $ "UtilityTestClass" @ firstPlay.class $ Chr(10));
-
- //#4 Assign a value to the class attribute
- firstPlay.setTitle("Prometheus Bound");
-
- //#5 Retrieve a value from the class attribute
- Log("Play title: " $ firstPlay.getTitle() );
-
-
- return 0;
- }
-
-