Update of /cvsroot/dynapi/dynapi/docs/config/data/dynapi/api In directory usw-pr-cvs1:/tmp/cvs-serv29779/data/dynapi/api Modified Files: dynlayer.js dyndocument.js Log Message: Fixed a few typos Index: dynlayer.js =================================================================== RCS file: /cvsroot/dynapi/dynapi/docs/config/data/dynapi/api/dynlayer.js,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** dynlayer.js 2001/01/21 06:08:55 1.2 --- dynlayer.js 2001/01/21 07:03:51 1.3 *************** *** 26,32 **** /// Set to true for all DynLayer objects const boolean isDynLayer; ! // Returns DynLayer constructor object object getClass(); ! // Returns a fully valid string reference to the DynLayer string toString(); void addChildID(DynLayer child); --- 26,51 ---- /// Set to true for all DynLayer objects const boolean isDynLayer; ! /// Stores the parent object ! object parent; ! /// Set to true if it is a child ! boolean isChild; ! /// Set to true when is has been created ! boolean created; ! /// Stores layer html ! string html; ! object elm; ! DynDocument doc; ! object css; ! /** Returns DynLayer constructor object ! * ! * Example Usage: ! * @code ! * if (mylayer.getClass() == DynLayer) { ! * // mylayer is a dynlayer ! * } ! * @endcode ! */ object getClass(); ! /// Returns a fully valid string reference to the DynLayer string toString(); void addChildID(DynLayer child); *************** *** 43,46 **** --- 62,66 ---- */ DynLayer(string id,int x,int y,int w,int h,string bgColor,string visible,int zIndex,string bgImage); + DynLayer children[]; /// Adds the given DynLayer(s) to this DynLayer void addChild(DynLayer dlyr); Index: dyndocument.js =================================================================== RCS file: /cvsroot/dynapi/dynapi/docs/config/data/dynapi/api/dyndocument.js,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** dyndocument.js 2001/01/21 06:08:55 1.2 --- dyndocument.js 2001/01/21 07:03:51 1.3 *************** *** 36,39 **** --- 36,43 ---- /// Returns a valid, global reference to the DynDocument string toString(); + /** Returns DynDocument constructor object + * + * @see DynLayer::getClass + */ object getClass(); /// @see DynLayer::addChild _______________________________________________ Dynapi-CVS mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/dynapi-cvs