Lines Matching refs:ElementConfigPtr

78 	void addElement( ElementConfigPtr& rElementConfig ) throw ( SAXException );
81ElementConfigPtr importAtomConfig( const Reference< XAttributeList > & xAttribs, bool bIsContainer…
82ElementConfigPtr importElementConfig( const Reference< XAttributeList > & xAttribs ) throw( SAXExc…
83ElementConfigPtr importSwitchConfig( const Reference< XAttributeList > & xAttribs ) throw( SAXExce…
84ElementConfigPtr importCaseConfig( const Reference< XAttributeList > & xAttribs ) throw( SAXExcept…
85ElementConfigPtr importValueElementConfig( const Reference< XAttributeList > & xAttribs ) throw( S…
87 std::stack< ElementConfigPtr > maElementStack;
128 void ConfigHandler::addElement( ElementConfigPtr& rElementConfig ) throw ( SAXException ) in addElement()
168 ElementConfigPtr pElement; in startElement()
244 ElementConfigPtr ConfigHandler::importAtomConfig( const Reference< XAttributeList > & xAttribs, boo… in importAtomConfig()
249 ElementConfigPtr aPtr( new AtomConfig( getAttribute(xAttribs,"name"), bIsContainer ) ); in importAtomConfig()
254 ElementConfigPtr ConfigHandler::importElementConfig( const Reference< XAttributeList > & xAttribs )… in importElementConfig()
257ElementConfigPtr pElementConfig( new ElementConfigContainer( getAttribute( xAttribs, "name" ), nTy… in importElementConfig()
262 ElementConfigPtr ConfigHandler::importValueElementConfig( const Reference< XAttributeList > & xAttr… in importValueElementConfig()
264ElementConfigPtr pElementConfig( new ElementValueConfig( getAttribute( xAttribs, "name" ), getAttr… in importValueElementConfig()
269 ElementConfigPtr ConfigHandler::importSwitchConfig( const Reference< XAttributeList > & xAttribs ) … in importSwitchConfig()
272 ElementConfigPtr pElementConfig( new SwitchElementConfig( nType ) ); in importSwitchConfig()
277 ElementConfigPtr ConfigHandler::importCaseConfig( const Reference< XAttributeList > & xAttribs ) th… in importCaseConfig()
279 ElementConfigPtr pElementConfig( new CaseElementConfig( getAttribute( xAttribs, "value" ) ) ); in importCaseConfig()