IFormEntity.cs
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:2k
源码类别:

编辑器/阅读器

开发平台:

C#

  1. // -- FILE ------------------------------------------------------------------
  2. // name       : IFormEntity.cs
  3. // project    : Itenso Web User Forms
  4. // created    : Jani Giannoudis - 2008.10.30
  5. // language   : c#
  6. // environment: .NET 2.0
  7. // copyright  : (c) 2008 by Itenso GmbH, Switzerland
  8. // --------------------------------------------------------------------------
  9. using System;
  10. using Itenso.WebUserForms.Data.Variable;
  11. namespace Itenso.WebUserForms.Data.Form
  12. {
  13. // ------------------------------------------------------------------------
  14. public interface IFormEntity
  15. {
  16. // ----------------------------------------------------------------------
  17. FormEntityType Kind { get; }
  18. // ----------------------------------------------------------------------
  19. string Name { get; set; }
  20. // ----------------------------------------------------------------------
  21. IFormEntity Duplicate();
  22. // ----------------------------------------------------------------------
  23. /// <summary>
  24. /// Expands all variable references in the fields contents with the values
  25. /// from the given variable set. A reference has the form '${varName}' and
  26. /// will be replaced by the content for 'varName' from the given variable
  27. /// set. If no such variable is found in the given set, no replacement takes
  28. /// place and the reference is preserved as it is.
  29. /// </summary>
  30. /// <param name="varSet">the set containing replacements for a variables.</param>
  31. void ExpandVariables( IVariableSet varSet );
  32. } // interface IFormEntity
  33. } // namespace Itenso.WebUserForms.Data.Form
  34. // -- EOF -------------------------------------------------------------------