(self, pac, element)
| 1860 | ) |
| 1861 | |
| 1862 | def _getPACAttributes(self, pac, element): |
| 1863 | pacAttributes = pac.getPayload(0x00000011) |
| 1864 | if not pacAttributes: |
| 1865 | pac.Buffers.append(PAC_INFO_BUFFER(ulType=0x00000011)) |
| 1866 | pacAttributes = PAC_ATTRIBUTES_INFO(Flags=0) |
| 1867 | flags = str(pacAttributes.Flags[0]).split("+") |
| 1868 | self._data["pacAttributes"] = {} |
| 1869 | self._make_checkbox( |
| 1870 | element, |
| 1871 | [ |
| 1872 | "PAC_WAS_REQUESTED", |
| 1873 | "PAC_WAS_GIVEN_IMPLICITLY", |
| 1874 | ], |
| 1875 | flags, |
| 1876 | self._data["pacAttributes"], |
| 1877 | ) |
| 1878 | |
| 1879 | def _getPACRequestor(self, pac, element): |
| 1880 | pacRequestor = pac.getPayload(0x00000012) |
no test coverage detected