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

  1. ////////////////////////
  2. //  AttributeEditor
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7. EditorTable: WOGenericContainer {
  8.     elementName = "table";
  9.     border = borderSize;
  10.     cellPadding=cellPadding;
  11.     cellSpacing=cellSpacing;
  12. };
  13.  
  14. EntryRepetition: WORepetition {
  15.     count = entryCount;
  16.     index = repetitionIndex;
  17. };
  18.  
  19. KeyCell: WOString {
  20.     value = keyString;
  21. };
  22.  
  23. ValueCell: ReadWriteString {
  24.     value = valueString;
  25.     fieldSize = fieldSize;
  26.     isEditable = isEditable;
  27. };
  28.  
  29. Comment: WOConditional {
  30.     condition = NO;
  31. };
  32.