1 // Copyright 2017 PDFium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6 7 #include "fxjs/xfa/cjx_handler.h" 8 9 #include "xfa/fxfa/parser/cxfa_handler.h" 10 CJX_Handler(CXFA_Handler * node)11CJX_Handler::CJX_Handler(CXFA_Handler* node) : CJX_TextNode(node) {} 12 13 CJX_Handler::~CJX_Handler() = default; 14 DynamicTypeIs(TypeTag eType) const15bool CJX_Handler::DynamicTypeIs(TypeTag eType) const { 16 return eType == static_type__ || ParentType__::DynamicTypeIs(eType); 17 } 18 version(CFXJSE_Value * pValue,bool bSetting,XFA_Attribute eAttribute)19void CJX_Handler::version(CFXJSE_Value* pValue, 20 bool bSetting, 21 XFA_Attribute eAttribute) {} 22