ds/GuiPathItem.js

  1. /**
  2. * @fileoverview Exposed data type for use outside of DsClient.
  3. * All properties should be exposed to allow use from uncompiled
  4. * code.
  5. *
  6. * @author anders.rejdebrant@spark-vision.com (Anders Rejdebrant)
  7. */
  8. goog.provide('spv.ds.GuiPathItem');
  9. /**
  10. * @export
  11. * @struct
  12. * @constructor
  13. * @param {string} id
  14. * @param {string} short_text
  15. */
  16. spv.ds.GuiPathItem = function(id, short_text)
  17. {
  18. /**
  19. * @type {string}
  20. * @nocollapse
  21. */
  22. this.id = id;
  23. /**
  24. * @type {string}
  25. * @nocollapse
  26. */
  27. this.short_text = short_text;
  28. };