Last change
on this file since 27027 was 11995, checked in by darin, 19 years ago |
- Makefile: Took out unneeded "export" line.
- <many-files>: Changed a lot of flags (cleared bogus executable bits, set
MIME types, other small corrections).
|
-
Property svn:eol-style
set to
native
-
Property svn:mime-type
set to
text/javascript
|
File size:
1.2 KB
|
Line | |
---|
1 | myInterface.logMessage ("Starting test");
|
---|
2 |
|
---|
3 | myInterface.logMessage ("Testing properties:");
|
---|
4 | myInterface.logMessage ("myInterface.doubleValue = " + myInterface.doubleValue);
|
---|
5 | myInterface.logMessage ("myInterface.intValue = " + myInterface.intValue);
|
---|
6 | myInterface.logMessage ("myInterface.stringValue = " + myInterface.stringValue);
|
---|
7 | myInterface.logMessage ("myInterface.booleanValue = " + myInterface.booleanValue);
|
---|
8 | myInterface.logMessage ("myInterface.nullValue = " + myInterface.nullValue);
|
---|
9 | myInterface.logMessage ("myInterface.undefinedValue = " + myInterface.undefinedValue);
|
---|
10 |
|
---|
11 | myInterface.logMessage ("myInterface.setInt_(666) = " + myInterface.setInt_(666));
|
---|
12 | myInterface.logMessage ("myInterface.getInt() = " + myInterface.getInt());
|
---|
13 | myInterface.logMessage ("myInterface.getString() = " + myInterface.getString());
|
---|
14 | myInterface.logMessage ("myInterface.myInt = " + myInterface.myInt);
|
---|
15 | myInterface.logMessage ("setting myInterface.myInt = 777");
|
---|
16 | myInterface.myInt = 777;
|
---|
17 | myInterface.logMessage ("myInterface.myInt = " + myInterface.myInt);
|
---|
18 | myInterface.logMessage ("myInterface.getMySecondInterface().doubleValue = " + myInterface.getMySecondInterface().doubleValue);
|
---|
19 | myInterface.logMessage ("myInterface.getMySecondInterface() = " + myInterface.getMySecondInterface());
|
---|
Note:
See
TracBrowser
for help on using the repository browser.