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

  1. ////////////////////////
  2. //  ArrayEditor
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7. ArrayTable: WOGenericContainer {
  8.     elementName = "table";
  9.     border = borderSize;
  10.     cellPadding = cellPadding;
  11.     cellSpacing = cellSpacing;
  12. };
  13.  
  14. ArrayRepetition: WORepetition {
  15.     count = entryCount;
  16.     index = repetitionIndex;
  17. };
  18.  
  19. ElementField: ReadWriteString {
  20.     value = arrayElement;
  21.     fieldSize = fieldSize;
  22.     isEditable = isEditable;
  23. };
  24.  
  25. Comment: WOConditional {
  26.     condition = NO;
  27. };
  28.