123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- {
- "name": "DC",
- "uri": "http://www.omg.org/spec/DD/20100524/DC",
- "types": [
- {
- "name": "Boolean"
- },
- {
- "name": "Integer"
- },
- {
- "name": "Real"
- },
- {
- "name": "String"
- },
- {
- "name": "Font",
- "properties": [
- {
- "name": "name",
- "type": "String",
- "isAttr": true
- },
- {
- "name": "size",
- "type": "Real",
- "isAttr": true
- },
- {
- "name": "isBold",
- "type": "Boolean",
- "isAttr": true
- },
- {
- "name": "isItalic",
- "type": "Boolean",
- "isAttr": true
- },
- {
- "name": "isUnderline",
- "type": "Boolean",
- "isAttr": true
- },
- {
- "name": "isStrikeThrough",
- "type": "Boolean",
- "isAttr": true
- }
- ]
- },
- {
- "name": "Point",
- "properties": [
- {
- "name": "x",
- "type": "Real",
- "default": "0",
- "isAttr": true
- },
- {
- "name": "y",
- "type": "Real",
- "default": "0",
- "isAttr": true
- }
- ]
- },
- {
- "name": "Bounds",
- "properties": [
- {
- "name": "x",
- "type": "Real",
- "default": "0",
- "isAttr": true
- },
- {
- "name": "y",
- "type": "Real",
- "default": "0",
- "isAttr": true
- },
- {
- "name": "width",
- "type": "Real",
- "isAttr": true
- },
- {
- "name": "height",
- "type": "Real",
- "isAttr": true
- }
- ]
- }
- ],
- "prefix": "dc",
- "associations": []
- }
|