#include "fxjs/cjs_annot.h"
#include "constants/annotation_flags.h"
#include "fxjs/cjs_event_context.h"
#include "fxjs/cjs_object.h"
#include "fxjs/js_define.h"
#include "fxjs/js_resources.h"
const JSPropertySpec CJS_Annot::PropertySpecs[] = …;
uint32_t CJS_Annot::ObjDefnID = …;
const char CJS_Annot::kName[] = …;
uint32_t CJS_Annot::GetObjDefnID() { … }
void CJS_Annot::DefineJSObjects(CFXJS_Engine* pEngine) { … }
CJS_Annot::CJS_Annot(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime)
: … { … }
CJS_Annot::~CJS_Annot() = default;
void CJS_Annot::SetSDKAnnot(CPDFSDK_BAAnnot* annot) { … }
CJS_Result CJS_Annot::get_hidden(CJS_Runtime* pRuntime) { … }
CJS_Result CJS_Annot::set_hidden(CJS_Runtime* pRuntime,
v8::Local<v8::Value> vp) { … }
CJS_Result CJS_Annot::get_name(CJS_Runtime* pRuntime) { … }
CJS_Result CJS_Annot::set_name(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp) { … }
CJS_Result CJS_Annot::get_type(CJS_Runtime* pRuntime) { … }
CJS_Result CJS_Annot::set_type(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp) { … }