merge_attributes
xsdata.codegen.handlers.merge_attributes
MergeAttributes
Bases: HandlerInterface
Merge same type attr and their restrictions.
Source code in xsdata/codegen/handlers/merge_attributes.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | |
process(target)
classmethod
Detect and process duplicate attributes.
Cases
- Enumeration: remove duplicates
- Otherwise: merge attrs and
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target
|
Class
|
The target class instance |
required |
Source code in xsdata/codegen/handlers/merge_attributes.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | |
filter_duplicate_attrs(target)
classmethod
Removes duplicate attrs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target
|
Class
|
The target class instance |
required |
Source code in xsdata/codegen/handlers/merge_attributes.py
28 29 30 31 32 33 34 35 36 | |
merge_duplicate_attrs(target)
classmethod
Find duplicate attrs and merge them.
In order for two attrs to be considered duplicates, they must have the same name, namespace and tag.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target
|
Class
|
The target class instance |
required |
Source code in xsdata/codegen/handlers/merge_attributes.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | |