SkPdfMovieActionDictionary_autogen.cpp revision b74bdf024930e71ca1be8f874ed49dd0b31449b1
1#include "SkPdfMovieActionDictionary_autogen.h"
2
3
4#include "SkPdfNativeDoc.h"
5SkString SkPdfMovieActionDictionary::S(SkPdfNativeDoc* doc) {
6  SkPdfNativeObject* ret = get("S", "");
7  if (doc) {ret = doc->resolveReference(ret);}
8  if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->nameValue2();
9  // TODO(edisonn): warn about missing required field, assert for known good pdfs
10  return SkString();
11}
12
13bool SkPdfMovieActionDictionary::has_S() const {
14  return get("S", "") != NULL;
15}
16
17SkPdfDictionary* SkPdfMovieActionDictionary::Annot(SkPdfNativeDoc* doc) {
18  SkPdfNativeObject* ret = get("Annot", "");
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
25bool SkPdfMovieActionDictionary::has_Annot() const {
26  return get("Annot", "") != NULL;
27}
28
29SkString SkPdfMovieActionDictionary::T(SkPdfNativeDoc* doc) {
30  SkPdfNativeObject* ret = get("T", "");
31  if (doc) {ret = doc->resolveReference(ret);}
32  if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
33  // TODO(edisonn): warn about missing default value for optional fields
34  return SkString();
35}
36
37bool SkPdfMovieActionDictionary::has_T() const {
38  return get("T", "") != NULL;
39}
40
41SkString SkPdfMovieActionDictionary::Operation(SkPdfNativeDoc* doc) {
42  SkPdfNativeObject* ret = get("Operation", "");
43  if (doc) {ret = doc->resolveReference(ret);}
44  if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->nameValue2();
45  // TODO(edisonn): warn about missing default value for optional fields
46  return SkString();
47}
48
49bool SkPdfMovieActionDictionary::has_Operation() const {
50  return get("Operation", "") != NULL;
51}
52