OLD | NEW |
(Empty) | |
| 1 #include "SkPdfAnnotationActionsDictionary_autogen.h" |
| 2 |
| 3 |
| 4 #include "SkPdfNativeDoc.h" |
| 5 SkPdfDictionary* SkPdfAnnotationActionsDictionary::E(SkPdfNativeDoc* doc) { |
| 6 SkPdfNativeObject* ret = get("E", ""); |
| 7 if (doc) {ret = doc->resolveReference(ret);} |
| 8 if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret
->isReference())) return (SkPdfDictionary*)ret; |
| 9 // TODO(edisonn): warn about missing default value for optional fields |
| 10 return NULL; |
| 11 } |
| 12 |
| 13 bool SkPdfAnnotationActionsDictionary::has_E() const { |
| 14 return get("E", "") != NULL; |
| 15 } |
| 16 |
| 17 SkPdfDictionary* SkPdfAnnotationActionsDictionary::X(SkPdfNativeDoc* doc) { |
| 18 SkPdfNativeObject* ret = get("X", ""); |
| 19 if (doc) {ret = doc->resolveReference(ret);} |
| 20 if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret
->isReference())) return (SkPdfDictionary*)ret; |
| 21 // TODO(edisonn): warn about missing default value for optional fields |
| 22 return NULL; |
| 23 } |
| 24 |
| 25 bool SkPdfAnnotationActionsDictionary::has_X() const { |
| 26 return get("X", "") != NULL; |
| 27 } |
| 28 |
| 29 SkPdfDictionary* SkPdfAnnotationActionsDictionary::D(SkPdfNativeDoc* doc) { |
| 30 SkPdfNativeObject* ret = get("D", ""); |
| 31 if (doc) {ret = doc->resolveReference(ret);} |
| 32 if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret
->isReference())) return (SkPdfDictionary*)ret; |
| 33 // TODO(edisonn): warn about missing default value for optional fields |
| 34 return NULL; |
| 35 } |
| 36 |
| 37 bool SkPdfAnnotationActionsDictionary::has_D() const { |
| 38 return get("D", "") != NULL; |
| 39 } |
| 40 |
| 41 SkPdfDictionary* SkPdfAnnotationActionsDictionary::U(SkPdfNativeDoc* doc) { |
| 42 SkPdfNativeObject* ret = get("U", ""); |
| 43 if (doc) {ret = doc->resolveReference(ret);} |
| 44 if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret
->isReference())) return (SkPdfDictionary*)ret; |
| 45 // TODO(edisonn): warn about missing default value for optional fields |
| 46 return NULL; |
| 47 } |
| 48 |
| 49 bool SkPdfAnnotationActionsDictionary::has_U() const { |
| 50 return get("U", "") != NULL; |
| 51 } |
| 52 |
| 53 SkPdfDictionary* SkPdfAnnotationActionsDictionary::Fo(SkPdfNativeDoc* doc) { |
| 54 SkPdfNativeObject* ret = get("Fo", ""); |
| 55 if (doc) {ret = doc->resolveReference(ret);} |
| 56 if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret
->isReference())) return (SkPdfDictionary*)ret; |
| 57 // TODO(edisonn): warn about missing default value for optional fields |
| 58 return NULL; |
| 59 } |
| 60 |
| 61 bool SkPdfAnnotationActionsDictionary::has_Fo() const { |
| 62 return get("Fo", "") != NULL; |
| 63 } |
| 64 |
| 65 SkPdfDictionary* SkPdfAnnotationActionsDictionary::Bl(SkPdfNativeDoc* doc) { |
| 66 SkPdfNativeObject* ret = get("Bl", ""); |
| 67 if (doc) {ret = doc->resolveReference(ret);} |
| 68 if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret
->isReference())) return (SkPdfDictionary*)ret; |
| 69 // TODO(edisonn): warn about missing default value for optional fields |
| 70 return NULL; |
| 71 } |
| 72 |
| 73 bool SkPdfAnnotationActionsDictionary::has_Bl() const { |
| 74 return get("Bl", "") != NULL; |
| 75 } |
| 76 |
OLD | NEW |