home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / ObjectArrayEditor.wo / ObjectArrayEditor.wod < prev    next >
Encoding:
Text File  |  1996-03-02  |  703 b   |  43 lines

  1. ////////////////////////
  2. //  ObjectArrayEditor
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7.  
  8. EditorTable: WOGenericContainer {
  9.     elementName = "table";
  10.     border = borderSize;
  11.     cellPadding = cellPadding;
  12.     cellSpacing = cellSpacing;
  13. };
  14.  
  15. LabelRepetition: WORepetition {
  16.     count = colCount;
  17.     index = colIndex;
  18. };
  19.  
  20. RowRepetition: WORepetition {
  21.     count = rowCount;
  22.     index = rowIndex;
  23. };
  24.  
  25. FieldRepetition: WORepetition {
  26.     count = colCount;
  27.     index = colIndex;
  28. };
  29.  
  30. LabelString: WOString {
  31.     value = labelString;
  32. };
  33.  
  34. ValueString: ReadWriteString {
  35.     value = valueString;
  36.     fieldSize = fieldSize;
  37.     isEditable = isEditable;
  38. };
  39.  
  40. Comment: WOConditional {
  41.     condition = NO;
  42. };
  43.