New (PersistentObjectInfo constructor): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
 
Line 6: Line 6:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%persistentObjectInfo</th><td>A declared <var>PersistentObjectInfo</var> object to contain the new <var>PersistentObjectInfo</var> object instance.</td></tr>
<tr><th>%persistentObjectInfo</th><td>A declared <var>PersistentObjectInfo</var> object to contain the new <var>PersistentObjectInfo</var> object instance.</td></tr>
<tr><th><var>%(PersistentObjectInfo)</var></th>
<tr><th><var>[%(PersistentObjectInfo)]</var></th>
<td>The optional class name in parentheses denotes a <var>[[Notation conventions for methods#Constructors|Constructor]]</var>.  See [[#Usage notes|"Usage notes"]], below, for more information about invoking a <var>PersistentObjectInfo</var> <var>Constructor</var>.</td></tr>
<td>The optional class name in parentheses denotes a <var>[[Notation conventions for methods#Constructors|Constructor]]</var>.  See [[#Usage notes|"Usage notes"]], below, for more information about invoking a <var>PersistentObjectInfo</var> <var>Constructor</var>.</td></tr>
</table>
</table>
==Usage notes==
==Usage notes==
<ul>
<ul>

Latest revision as of 00:52, 23 August 2011

Create a new PersistentObjectInfo object (PersistentObjectInfo class)


Syntax

%persObjList = [%(PersistentObjectInfo)]:New

Syntax terms

%persistentObjectInfoA declared PersistentObjectInfo object to contain the new PersistentObjectInfo object instance.
[%(PersistentObjectInfo)] The optional class name in parentheses denotes a Constructor. See "Usage notes", below, for more information about invoking a PersistentObjectInfo Constructor.

Usage notes

  • As described in "Using New or other Constructors", New can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is Null:

    %persObjInf = new %persObjInf = %(PersistentObjectInfo):new %persObjInf = %persObjInf:new

See also