OLD | NEW |
| (Empty) |
1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | |
2 | |
3 xmlns:Sk="urn:screenplay" | |
4 | |
5 xmlns:extra="urn:extraPathEffects" targetNamespace="urn:extraPathEffects" > | |
6 | |
7 <xs:import namespace="urn:screenplay" | |
8 | |
9 schemaLocation="SkAnimateSchema.xsd" /> | |
10 | |
11 | |
12 | |
13 <xs:element name="composePathEffect" > | |
14 | |
15 <xs:complexType> | |
16 | |
17 <xs:choice maxOccurs="1"> | |
18 | |
19 <xs:element ref="Sk:dash"/> | |
20 | |
21 <xs:element ref="extra:shape1DPathEffect"/> | |
22 | |
23 </xs:choice> | |
24 | |
25 <xs:attribute name="id" type="xs:ID"/> | |
26 | |
27 </xs:complexType> | |
28 | |
29 </xs:element> | |
30 | |
31 | |
32 | |
33 <xs:element name="shape1DPathEffect" > | |
34 | |
35 <xs:complexType> | |
36 | |
37 <xs:choice maxOccurs="1"> | |
38 | |
39 <xs:element ref="Sk:matrix"/> | |
40 | |
41 <xs:element ref="Sk:path"/> | |
42 | |
43 </xs:choice> | |
44 | |
45 <xs:attribute name="addPath" type="Sk:DynamicString" /> | |
46 | |
47 <xs:attribute name="matrix" type="Sk:DynamicString" /> | |
48 | |
49 <xs:attribute name="path" type="Sk:Path" /> | |
50 | |
51 <xs:attribute name="phase" type="Sk:DynamicString"/> | |
52 | |
53 <xs:attribute name="spacing" type="Sk:DynamicString"/> | |
54 | |
55 <xs:attribute name="id" type="xs:ID"/> | |
56 | |
57 </xs:complexType> | |
58 | |
59 </xs:element> | |
60 | |
61 | |
62 | |
63 </xs:schema> | |
64 | |
65 | |
OLD | NEW |