dc.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. "name": "DC",
  3. "uri": "http://www.omg.org/spec/DD/20100524/DC",
  4. "types": [
  5. {
  6. "name": "Boolean"
  7. },
  8. {
  9. "name": "Integer"
  10. },
  11. {
  12. "name": "Real"
  13. },
  14. {
  15. "name": "String"
  16. },
  17. {
  18. "name": "Font",
  19. "properties": [
  20. {
  21. "name": "name",
  22. "type": "String",
  23. "isAttr": true
  24. },
  25. {
  26. "name": "size",
  27. "type": "Real",
  28. "isAttr": true
  29. },
  30. {
  31. "name": "isBold",
  32. "type": "Boolean",
  33. "isAttr": true
  34. },
  35. {
  36. "name": "isItalic",
  37. "type": "Boolean",
  38. "isAttr": true
  39. },
  40. {
  41. "name": "isUnderline",
  42. "type": "Boolean",
  43. "isAttr": true
  44. },
  45. {
  46. "name": "isStrikeThrough",
  47. "type": "Boolean",
  48. "isAttr": true
  49. }
  50. ]
  51. },
  52. {
  53. "name": "Point",
  54. "properties": [
  55. {
  56. "name": "x",
  57. "type": "Real",
  58. "default": "0",
  59. "isAttr": true
  60. },
  61. {
  62. "name": "y",
  63. "type": "Real",
  64. "default": "0",
  65. "isAttr": true
  66. }
  67. ]
  68. },
  69. {
  70. "name": "Bounds",
  71. "properties": [
  72. {
  73. "name": "x",
  74. "type": "Real",
  75. "default": "0",
  76. "isAttr": true
  77. },
  78. {
  79. "name": "y",
  80. "type": "Real",
  81. "default": "0",
  82. "isAttr": true
  83. },
  84. {
  85. "name": "width",
  86. "type": "Real",
  87. "isAttr": true
  88. },
  89. {
  90. "name": "height",
  91. "type": "Real",
  92. "isAttr": true
  93. }
  94. ]
  95. }
  96. ],
  97. "prefix": "dc",
  98. "associations": []
  99. }