unit.vwf.yaml 708 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ---
  2. extends: http://vwf.example.com/node2.vwf
  3. properties:
  4. echelon:
  5. set: |
  6. if ( this.echelon !== value ) {
  7. this.echelon = value;
  8. this.echelonChanged( value );
  9. }
  10. affiliation:
  11. set: |
  12. if ( this.affiliation !== value ) {
  13. this.affiliation = value;
  14. this.affiliationChanged( value );
  15. }
  16. fullName:
  17. tagName:
  18. description:
  19. symbolID:
  20. set: |
  21. if ( this.symbolID !== value ) {
  22. this.symbolID = value;
  23. this.symbolIDChanged( value );
  24. }
  25. image:
  26. methods:
  27. render:
  28. handleRender:
  29. events:
  30. imageRendered:
  31. echelonChanged:
  32. affiliationChanged:
  33. symbolIDChanged:
  34. scripts:
  35. - source: "unit.js"