You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

findbugs-exclude.xml 171KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FindBugsFilter>
  3. <Match>
  4. <Class name="org.apache.fop.render.intermediate.IFStructureTreeBuilder"/>
  5. <Field name="delegate"/>
  6. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  7. </Match>
  8. <Match>
  9. <Class name="org.apache.fop.render.pdf.PDFLogicalStructureHandler"/>
  10. <Field name="currentPage"/>
  11. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  12. </Match>
  13. <Match>
  14. <Class name="org.apache.fop.render.pdf.PDFLogicalStructureHandler"/>
  15. <Field name="pageParentTreeArray"/>
  16. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  17. </Match>
  18. <Match>
  19. <Class name="org.apache.fop.render.pdf.PDFStructureTreeBuilder"/>
  20. <Field name="logicalStructureHandler"/>
  21. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  22. </Match>
  23. <Match>
  24. <Class name="org.apache.fop.render.pdf.PDFStructureTreeBuilder"/>
  25. <Field name="pdfFactory"/>
  26. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  27. </Match>
  28. <Match>
  29. <Class name="org.apache.fop.accessibility.fo.FO2StructureTreeConverter$1"/>
  30. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  31. </Match>
  32. <Match>
  33. <Class name="~org.apache.fop.accessibility.fo.FOEventRecorder.*"/>
  34. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  35. </Match>
  36. <Match>
  37. <Class name="org.apache.fop.afp.AFPDataObjectInfo"/>
  38. <Method name="getUri"/>
  39. <Bug pattern="NM_CONFUSING"/>
  40. </Match>
  41. <Match>
  42. <Class name="org.apache.fop.render.afp.AFPRendererImageInfo"/>
  43. <Method name="getURI"/>
  44. <Bug pattern="NM_CONFUSING"/>
  45. </Match>
  46. <Match>
  47. <Class name="org.apache.fop.afp.AFPPaintingState"/>
  48. <Method name="getImageUri"/>
  49. <Bug pattern="NM_CONFUSING"/>
  50. </Match>
  51. <Match>
  52. <Class name="org.apache.fop.render.ps.PSImageFormResource"/>
  53. <Method name="getImageURI"/>
  54. <Bug pattern="NM_CONFUSING"/>
  55. </Match>
  56. <Match>
  57. <Class name="org.apache.fop.apps.FOURIResolver"/>
  58. <Method name="setThrowExceptions"/>
  59. <Bug pattern="NM_CONFUSING"/>
  60. </Match>
  61. <Match>
  62. <Class name="org.apache.fop.tools.anttasks.Fop"/>
  63. <Method name="setThrowexceptions"/>
  64. <Bug pattern="NM_CONFUSING"/>
  65. </Match>
  66. <Match>
  67. <Class name="org.apache.fop.apps.FopFactory"/>
  68. <Method name="setUserConfig"/>
  69. <Bug pattern="NM_CONFUSING"/>
  70. </Match>
  71. <Match>
  72. <Class name="org.apache.fop.tools.anttasks.Fop"/>
  73. <Method name="setUserconfig"/>
  74. <Bug pattern="NM_CONFUSING"/>
  75. </Match>
  76. <Match>
  77. <Class name="org.apache.fop.apps.PageSequenceResults"/>
  78. <Method name="getID"/>
  79. <Bug pattern="NM_CONFUSING"/>
  80. </Match>
  81. <Match>
  82. <Class name="org.apache.fop.fo.FObj"/>
  83. <Method name="getId"/>
  84. <Bug pattern="NM_CONFUSING"/>
  85. </Match>
  86. <Match>
  87. <Class name="org.apache.fop.area.inline.ForeignObject"/>
  88. <Method name="getNameSpace"/>
  89. <Bug pattern="NM_CONFUSING"/>
  90. </Match>
  91. <Match>
  92. <Class name="org.apache.fop.render.AbstractGenericSVGHandler"/>
  93. <Method name="getNamespace"/>
  94. <Bug pattern="NM_CONFUSING"/>
  95. </Match>
  96. <Match>
  97. <Class name="org.apache.fop.cli.CommandLineOptions"/>
  98. <Method name="getFOFile"/>
  99. <Bug pattern="NM_CONFUSING"/>
  100. </Match>
  101. <Match>
  102. <Class name="org.apache.fop.tools.anttasks.Fop"/>
  103. <Method name="getFofile"/>
  104. <Bug pattern="NM_CONFUSING"/>
  105. </Match>
  106. <Match>
  107. <Class name="org.apache.fop.cli.CommandLineOptions"/>
  108. <Method name="getXMLFile"/>
  109. <Bug pattern="NM_CONFUSING"/>
  110. </Match>
  111. <Match>
  112. <Class name="org.apache.fop.tools.anttasks.Fop"/>
  113. <Method name="getXmlFile"/>
  114. <Bug pattern="NM_CONFUSING"/>
  115. </Match>
  116. <Match>
  117. <Class name="org.apache.fop.fo.FOText"/>
  118. <Method name="getBaseLineShift"/>
  119. <Bug pattern="NM_CONFUSING"/>
  120. </Match>
  121. <Match>
  122. <Class name="org.apache.fop.fo.flow.AbstractGraphics"/>
  123. <Method name="getBaselineShift"/>
  124. <Bug pattern="NM_CONFUSING"/>
  125. </Match>
  126. <Match>
  127. <Class name="org.apache.fop.fo.FObj"/>
  128. <Method name="hasId"/>
  129. <Bug pattern="NM_CONFUSING"/>
  130. </Match>
  131. <Match>
  132. <Class name="org.apache.fop.render.intermediate.extensions.AbstractAction"/>
  133. <Method name="hasID"/>
  134. <Bug pattern="NM_CONFUSING"/>
  135. </Match>
  136. <Match>
  137. <Class name="org.apache.fop.fonts.EmbedFontInfo"/>
  138. <Method name="getPostScriptName"/>
  139. <Bug pattern="NM_CONFUSING"/>
  140. </Match>
  141. <Match>
  142. <Class name="org.apache.fop.fonts.type1.PFMFile"/>
  143. <Method name="getPostscriptName"/>
  144. <Bug pattern="NM_CONFUSING"/>
  145. </Match>
  146. <Match>
  147. <Class name="org.apache.fop.image.loader.batik.ImageLoaderFactorySVG"/>
  148. <Method name="getSupportedMIMETypes"/>
  149. <Bug pattern="NM_CONFUSING"/>
  150. </Match>
  151. <Match>
  152. <Class name="org.apache.fop.render.afp.AFPDocumentHandlerMaker"/>
  153. <Method name="getSupportedMimeTypes"/>
  154. <Bug pattern="NM_CONFUSING"/>
  155. </Match>
  156. <Match>
  157. <Class name="org.apache.fop.tools.TestConverter"/>
  158. <Method name="setBaseDir"/>
  159. <Bug pattern="NM_CONFUSING"/>
  160. </Match>
  161. <Match>
  162. <Class name="org.apache.fop.tools.anttasks.RunTest"/>
  163. <Method name="setBasedir"/>
  164. <Bug pattern="NM_CONFUSING"/>
  165. </Match>
  166. <!-- /The names of public methods will not be modified -->
  167. <!-- These casts are checked in the code -->
  168. <Match>
  169. <Class name="org.apache.fop.render.afp.AFPImageHandlerGraphics2D"/>
  170. <Method name="isCompatible"/>
  171. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  172. </Match>
  173. <Match>
  174. <Class name="org.apache.fop.render.afp.AFPImageHandlerSVG"/>
  175. <Method name="isCompatible"/>
  176. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  177. </Match>
  178. <Match>
  179. <Class name="org.apache.fop.render.afp.AbstractPDFImageHandler"/>
  180. <Method name="handleImage"/>
  181. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  182. </Match>
  183. <!-- /These casts are checked in the code -->
  184. <!-- return null is OK -->
  185. <Match>
  186. <Class name="org.apache.fop.svg.ACIUtils"/>
  187. <Method name="findFontsForBatikACI"/>
  188. <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
  189. </Match>
  190. <!-- Automatically generated list of exclusions -->
  191. <Match>
  192. <Class name="org.apache.fop.area.BodyRegion"/>
  193. <Method name="clone"/>
  194. <Bug pattern="CN_IDIOM_NO_SUPER_CALL"/>
  195. </Match>
  196. <Match>
  197. <Class name="org.apache.fop.area.Page"/>
  198. <Method name="clone"/>
  199. <Bug pattern="CN_IDIOM_NO_SUPER_CALL"/>
  200. </Match>
  201. <Match>
  202. <Class name="org.apache.fop.area.PageViewport"/>
  203. <Method name="clone"/>
  204. <Bug pattern="CN_IDIOM_NO_SUPER_CALL"/>
  205. </Match>
  206. <Match>
  207. <Class name="org.apache.fop.area.RegionReference"/>
  208. <Method name="clone"/>
  209. <Bug pattern="CN_IDIOM_NO_SUPER_CALL"/>
  210. </Match>
  211. <Match>
  212. <Class name="org.apache.fop.area.BodyRegion"/>
  213. <!--Neither method nor field-->
  214. <Bug pattern="CN_IDIOM_NO_SUPER_CALL"/>
  215. </Match>
  216. <Match>
  217. <Class name="org.apache.fop.area.RegionViewport"/>
  218. <Method name="clone"/>
  219. <Bug pattern="CN_IDIOM_NO_SUPER_CALL"/>
  220. </Match>
  221. <Match>
  222. <Class name="org.apache.fop.hyphenation.CharVector"/>
  223. <Method name="clone"/>
  224. <Bug pattern="CN_IDIOM_NO_SUPER_CALL"/>
  225. </Match>
  226. <Match>
  227. <Class name="org.apache.fop.hyphenation.TernaryTree"/>
  228. <Method name="clone"/>
  229. <Bug pattern="CN_IDIOM_NO_SUPER_CALL"/>
  230. </Match>
  231. <Match>
  232. <Class name="org.apache.fop.hyphenation.HyphenationTree"/>
  233. <!--Neither method nor field-->
  234. <Bug pattern="CN_IDIOM_NO_SUPER_CALL"/>
  235. </Match>
  236. <Match>
  237. <Class name="org.apache.fop.render.intermediate.IFGraphicContext"/>
  238. <Method name="clone"/>
  239. <Bug pattern="CN_IDIOM_NO_SUPER_CALL"/>
  240. </Match>
  241. <Match>
  242. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfAttributes"/>
  243. <Method name="clone"/>
  244. <Bug pattern="CN_IDIOM_NO_SUPER_CALL"/>
  245. </Match>
  246. <Match>
  247. <Class name="org.apache.fop.render.rtf.FOPRtfAttributes"/>
  248. <!--Neither method nor field-->
  249. <Bug pattern="CN_IDIOM_NO_SUPER_CALL"/>
  250. </Match>
  251. <Match>
  252. <Class name="org.apache.fop.hyphenation.Hyphenator"/>
  253. <Method name="getResourceStream"/>
  254. <Bug pattern="DE_MIGHT_IGNORE"/>
  255. </Match>
  256. <Match>
  257. <Class name="java.lang.Exception"/>
  258. <!--Neither method nor field-->
  259. <Bug pattern="DE_MIGHT_IGNORE"/>
  260. </Match>
  261. <Match>
  262. <Class name="org.apache.fop.cli.CommandLineOptions"/>
  263. <Method name="flushCache"/>
  264. <Bug pattern="DM_EXIT"/>
  265. </Match>
  266. <Match>
  267. <Class name="org.apache.fop.cli.CommandLineOptions"/>
  268. <Method name="parseCustomOutputOption"/>
  269. <Bug pattern="DM_EXIT"/>
  270. </Match>
  271. <Match>
  272. <Class name="org.apache.fop.cli.CommandLineOptions"/>
  273. <Method name="parseOptions"/>
  274. <Bug pattern="DM_EXIT"/>
  275. </Match>
  276. <Match>
  277. <Class name="org.apache.fop.cli.Main"/>
  278. <Method name="startFOP"/>
  279. <Bug pattern="DM_EXIT"/>
  280. </Match>
  281. <Match>
  282. <Class name="org.apache.fop.cli.Main"/>
  283. <Method name="startFOPWithDynamicClasspath"/>
  284. <Bug pattern="DM_EXIT"/>
  285. </Match>
  286. <Match>
  287. <Class name="org.apache.fop.tools.fontlist.FontListMain"/>
  288. <Method name="parseArguments"/>
  289. <Bug pattern="DM_EXIT"/>
  290. </Match>
  291. <Match>
  292. <Class name="org.apache.fop.cli.Main"/>
  293. <Method name="startFOPWithDynamicClasspath"/>
  294. <Bug pattern="DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED"/>
  295. </Match>
  296. <Match>
  297. <Class name="java.net.URLClassLoader"/>
  298. <!--Neither method nor field-->
  299. <Bug pattern="DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED"/>
  300. </Match>
  301. <Match>
  302. <Class name="org.apache.fop.tools.anttasks.RunTest"/>
  303. <Method name="runReference"/>
  304. <Bug pattern="DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED"/>
  305. </Match>
  306. <Match>
  307. <Class name="java.net.URLClassLoader"/>
  308. <!--Neither method nor field-->
  309. <Bug pattern="DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED"/>
  310. </Match>
  311. <Match>
  312. <Class name="org.apache.fop.tools.fontlist.FontSpec"/>
  313. <Method name="compareTo"/>
  314. <Bug pattern="EQ_COMPARETO_USE_OBJECT_EQUALS"/>
  315. </Match>
  316. <Match>
  317. <Class name="org.apache.fop.fonts.FontInfo"/>
  318. <Method name="fuzzyFontLookup"/>
  319. <Bug pattern="ES_COMPARING_PARAMETER_STRING_WITH_EQ"/>
  320. </Match>
  321. <Match>
  322. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTextrun"/>
  323. <Method name="addBookmark"/>
  324. <Bug pattern="ES_COMPARING_PARAMETER_STRING_WITH_EQ"/>
  325. </Match>
  326. <Match>
  327. <Class name="org.apache.fop.tools.fontlist.FontListSerializer"/>
  328. <Method name="generateSAX"/>
  329. <Bug pattern="ES_COMPARING_PARAMETER_STRING_WITH_EQ"/>
  330. </Match>
  331. <Match>
  332. <Class name="org.apache.fop.afp.AFPResourceInfo"/>
  333. <Method name="equals"/>
  334. <Bug pattern="ES_COMPARING_STRINGS_WITH_EQ"/>
  335. </Match>
  336. <Match>
  337. <Class name="org.apache.fop.afp.AFPResourceLevel"/>
  338. <Method name="equals"/>
  339. <Bug pattern="ES_COMPARING_STRINGS_WITH_EQ"/>
  340. </Match>
  341. <Match>
  342. <Class name="org.apache.fop.fo.flow.Marker$MarkerAttribute"/>
  343. <Method name="equals"/>
  344. <Bug pattern="ES_COMPARING_STRINGS_WITH_EQ"/>
  345. </Match>
  346. <Match>
  347. <Class name="org.apache.fop.render.ps.NativeTextHandler"/>
  348. <Method name="establishCurrentFont"/>
  349. <Bug pattern="ES_COMPARING_STRINGS_WITH_EQ"/>
  350. </Match>
  351. <Match>
  352. <Class name="org.apache.fop.apps.MimeConstants"/>
  353. <!--Neither method nor field-->
  354. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE"/>
  355. </Match>
  356. <Match>
  357. <Class name="org.apache.xmlgraphics.util.MimeConstants"/>
  358. <!--Neither method nor field-->
  359. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE"/>
  360. </Match>
  361. <Match>
  362. <Class name="org.apache.fop.events.EventListener"/>
  363. <!--Neither method nor field-->
  364. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE"/>
  365. </Match>
  366. <Match>
  367. <Class name="java.util.EventListener"/>
  368. <!--Neither method nor field-->
  369. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE"/>
  370. </Match>
  371. <Match>
  372. <Class name="org.apache.fop.render.Graphics2DImagePainter"/>
  373. <!--Neither method nor field-->
  374. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE"/>
  375. </Match>
  376. <Match>
  377. <Class name="org.apache.xmlgraphics.java2d.Graphics2DImagePainter"/>
  378. <!--Neither method nor field-->
  379. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE"/>
  380. </Match>
  381. <Match>
  382. <Class name="org.apache.fop.render.ps.PSFontUtils"/>
  383. <!--Neither method nor field-->
  384. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
  385. </Match>
  386. <Match>
  387. <Class name="org.apache.xmlgraphics.ps.PSFontUtils"/>
  388. <!--Neither method nor field-->
  389. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
  390. </Match>
  391. <Match>
  392. <Class name="org.apache.fop.render.ps.PSImageUtils"/>
  393. <!--Neither method nor field-->
  394. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
  395. </Match>
  396. <Match>
  397. <Class name="org.apache.xmlgraphics.ps.PSImageUtils"/>
  398. <!--Neither method nor field-->
  399. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
  400. </Match>
  401. <Match>
  402. <Class name="org.apache.fop.svg.GraphicsConfiguration"/>
  403. <!--Neither method nor field-->
  404. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
  405. </Match>
  406. <Match>
  407. <Class name="java.awt.GraphicsConfiguration"/>
  408. <!--Neither method nor field-->
  409. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
  410. </Match>
  411. <Match>
  412. <Class name="org.apache.fop.svg.PDFTextUtil"/>
  413. <!--Neither method nor field-->
  414. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
  415. </Match>
  416. <Match>
  417. <Class name="org.apache.fop.pdf.PDFTextUtil"/>
  418. <!--Neither method nor field-->
  419. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
  420. </Match>
  421. <Match>
  422. <Class name="org.apache.fop.util.QName"/>
  423. <!--Neither method nor field-->
  424. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
  425. </Match>
  426. <Match>
  427. <Class name="org.apache.xmlgraphics.util.QName"/>
  428. <!--Neither method nor field-->
  429. <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
  430. </Match>
  431. <Match>
  432. <Class name="org.apache.fop.afp.apps.FontPatternExtractor"/>
  433. <Method name="extract"/>
  434. <Bug pattern="OS_OPEN_STREAM"/>
  435. </Match>
  436. <Match>
  437. <Class name="org.apache.fop.fonts.autodetect.WindowsFontDirFinder"/>
  438. <Method name="getWinDir"/>
  439. <Bug pattern="OS_OPEN_STREAM"/>
  440. </Match>
  441. <Match>
  442. <Class name="org.apache.fop.pdf.PDFFactory"/>
  443. <Method name="buildCIDSet"/>
  444. <Bug pattern="OS_OPEN_STREAM"/>
  445. </Match>
  446. <Match>
  447. <Class name="org.apache.fop.pdf.PDFOutputIntent"/>
  448. <Method name="toPDF"/>
  449. <Bug pattern="OS_OPEN_STREAM"/>
  450. </Match>
  451. <Match>
  452. <Class name="org.apache.fop.render.pcl.PCLGenerator"/>
  453. <Method name="defineGrayscalePattern"/>
  454. <Bug pattern="OS_OPEN_STREAM"/>
  455. </Match>
  456. <Match>
  457. <Class name="org.apache.fop.render.pdf.ImageRenderedAdapter"/>
  458. <Method name="populateXObjectDictionary"/>
  459. <Bug pattern="OS_OPEN_STREAM"/>
  460. </Match>
  461. <Match>
  462. <Class name="org.apache.fop.tools.anttasks.FileCompare"/>
  463. <Method name="compareBytes"/>
  464. <Bug pattern="OS_OPEN_STREAM"/>
  465. </Match>
  466. <Match>
  467. <Class name="org.apache.fop.tools.TestConverter"/>
  468. <Method name="runTest"/>
  469. <Bug pattern="OS_OPEN_STREAM_EXCEPTION_PATH"/>
  470. </Match>
  471. <Match>
  472. <Class name="org.apache.fop.cli.CommandLineOptions"/>
  473. <Method name="parse"/>
  474. <Bug pattern="RC_REF_COMPARISON_BAD_PRACTICE_BOOLEAN"/>
  475. </Match>
  476. <Match>
  477. <Class name="org.apache.fop.afp.AFPStreamer"/>
  478. <Method name="writeToStream"/>
  479. <Bug pattern="RR_NOT_CHECKED"/>
  480. </Match>
  481. <Match>
  482. <Class name="org.apache.fop.fonts.type1.PFMFile"/>
  483. <Method name="load"/>
  484. <Bug pattern="RR_NOT_CHECKED"/>
  485. </Match>
  486. <Match>
  487. <Class name="org.apache.fop.afp.AFPStreamer"/>
  488. <Method name="close"/>
  489. <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
  490. </Match>
  491. <Match>
  492. <Class name="org.apache.fop.afp.apps.FontPatternExtractor"/>
  493. <Method name="main"/>
  494. <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
  495. </Match>
  496. <Match>
  497. <Class name="org.apache.fop.cli.Main"/>
  498. <Method name="startFOP"/>
  499. <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
  500. </Match>
  501. <Match>
  502. <Class name="org.apache.fop.fonts.FontCache"/>
  503. <Method name="getDefaultCacheFile"/>
  504. <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
  505. </Match>
  506. <Match>
  507. <Class name="org.apache.fop.fonts.FontCache"/>
  508. <Method name="loadFrom"/>
  509. <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
  510. </Match>
  511. <Match>
  512. <Class name="org.apache.fop.pdf.TempFileStreamCache"/>
  513. <Method name="clear"/>
  514. <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
  515. </Match>
  516. <Match>
  517. <Class name="org.apache.fop.render.afp.AFPRendererConfigurator"/>
  518. <Method name="configure"/>
  519. <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
  520. </Match>
  521. <Match>
  522. <Class name="org.apache.fop.tools.TestConverter"/>
  523. <Method name="runTest"/>
  524. <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
  525. </Match>
  526. <Match>
  527. <Class name="org.apache.fop.tools.TestConverter"/>
  528. <Method name="runTests"/>
  529. <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
  530. </Match>
  531. <Match>
  532. <Class name="org.apache.fop.tools.anttasks.FOPTaskStarter"/>
  533. <Method name="renderInputHandler"/>
  534. <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
  535. </Match>
  536. <Match>
  537. <Class name="org.apache.fop.tools.anttasks.FOPTaskStarter"/>
  538. <Method name="run"/>
  539. <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
  540. </Match>
  541. <Match>
  542. <Class name="org.apache.fop.tools.anttasks.RunTest"/>
  543. <Method name="runReference"/>
  544. <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
  545. </Match>
  546. <Match>
  547. <Class name="org.apache.fop.afp.AFPPaintingState"/>
  548. <Field name="colorConverter"/>
  549. <Bug pattern="SE_BAD_FIELD"/>
  550. </Match>
  551. <Match>
  552. <Class name="org.apache.fop.area.Area"/>
  553. <Field name="props"/>
  554. <Bug pattern="SE_BAD_FIELD"/>
  555. </Match>
  556. <Match>
  557. <Class name="org.apache.fop.area.BlockParent"/>
  558. <Field name="children"/>
  559. <Bug pattern="SE_BAD_FIELD"/>
  560. </Match>
  561. <Match>
  562. <Class name="org.apache.fop.area.LineArea"/>
  563. <Field name="inlineAreas"/>
  564. <Bug pattern="SE_BAD_FIELD"/>
  565. </Match>
  566. <Match>
  567. <Class name="org.apache.fop.area.MainReference"/>
  568. <Field name="spanAreas"/>
  569. <Bug pattern="SE_BAD_FIELD"/>
  570. </Match>
  571. <Match>
  572. <Class name="org.apache.fop.area.Page"/>
  573. <Field name="unresolved"/>
  574. <Bug pattern="SE_BAD_FIELD"/>
  575. </Match>
  576. <Match>
  577. <Class name="org.apache.fop.area.Span"/>
  578. <Field name="flowAreas"/>
  579. <Bug pattern="SE_BAD_FIELD"/>
  580. </Match>
  581. <Match>
  582. <Class name="org.apache.fop.area.Trait$Background"/>
  583. <Field name="imageInfo"/>
  584. <Bug pattern="SE_BAD_FIELD"/>
  585. </Match>
  586. <Match>
  587. <Class name="org.apache.fop.area.inline.Container"/>
  588. <Field name="blocks"/>
  589. <Bug pattern="SE_BAD_FIELD"/>
  590. </Match>
  591. <Match>
  592. <Class name="org.apache.fop.area.inline.InlineParent"/>
  593. <Field name="inlines"/>
  594. <Bug pattern="SE_BAD_FIELD"/>
  595. </Match>
  596. <Match>
  597. <Class name="org.apache.fop.events.Event"/>
  598. <Field name="params"/>
  599. <Bug pattern="SE_BAD_FIELD"/>
  600. </Match>
  601. <Match>
  602. <Class name="org.apache.fop.events.model.EventMethodModel"/>
  603. <Field name="params"/>
  604. <Bug pattern="SE_BAD_FIELD"/>
  605. </Match>
  606. <Match>
  607. <Class name="org.apache.fop.events.model.EventModel"/>
  608. <Field name="producers"/>
  609. <Bug pattern="SE_BAD_FIELD"/>
  610. </Match>
  611. <Match>
  612. <Class name="org.apache.fop.events.model.EventProducerModel"/>
  613. <Field name="methods"/>
  614. <Bug pattern="SE_BAD_FIELD"/>
  615. </Match>
  616. <Match>
  617. <Class name="org.apache.fop.fo.extensions.xmp.XMPMetadata"/>
  618. <Field name="meta"/>
  619. <Bug pattern="SE_BAD_FIELD"/>
  620. </Match>
  621. <Match>
  622. <Class name="org.apache.fop.fo.pagination.PageProductionException"/>
  623. <Field name="locator"/>
  624. <Bug pattern="SE_BAD_FIELD"/>
  625. </Match>
  626. <Match>
  627. <Class name="org.apache.fop.fonts.EmbedFontInfo"/>
  628. <Field name="fontTriplets"/>
  629. <Bug pattern="SE_BAD_FIELD"/>
  630. </Match>
  631. <Match>
  632. <Class name="org.apache.fop.fonts.FontCache"/>
  633. <Field name="failedFontMap"/>
  634. <Bug pattern="SE_BAD_FIELD"/>
  635. </Match>
  636. <Match>
  637. <Class name="org.apache.fop.fonts.FontCache"/>
  638. <Field name="fontfileMap"/>
  639. <Bug pattern="SE_BAD_FIELD"/>
  640. </Match>
  641. <Match>
  642. <Class name="org.apache.fop.fonts.FontCache$CachedFontFile"/>
  643. <Field name="filefontsMap"/>
  644. <Bug pattern="SE_BAD_FIELD"/>
  645. </Match>
  646. <Match>
  647. <Class name="org.apache.fop.layoutmgr.LayoutException"/>
  648. <Field name="layoutManager"/>
  649. <Bug pattern="SE_BAD_FIELD"/>
  650. </Match>
  651. <Match>
  652. <Class name="org.apache.fop.layoutmgr.inline.LineLayoutManager$Paragraph"/>
  653. <Field name="layoutManager"/>
  654. <Bug pattern="SE_BAD_FIELD"/>
  655. </Match>
  656. <Match>
  657. <Class name="org.apache.fop.pdf.PDFPaintingState$PDFData"/>
  658. <Field name="gstate"/>
  659. <Bug pattern="SE_BAD_FIELD"/>
  660. </Match>
  661. <Match>
  662. <Class name="org.apache.fop.render.awt.viewer.ImageProxyPanel"/>
  663. <Field name="renderer"/>
  664. <Bug pattern="SE_BAD_FIELD"/>
  665. </Match>
  666. <Match>
  667. <Class name="org.apache.fop.render.awt.viewer.PreviewDialog"/>
  668. <Field name="foUserAgent"/>
  669. <Bug pattern="SE_BAD_FIELD"/>
  670. </Match>
  671. <Match>
  672. <Class name="org.apache.fop.render.awt.viewer.PreviewDialog"/>
  673. <Field name="renderer"/>
  674. <Bug pattern="SE_BAD_FIELD"/>
  675. </Match>
  676. <Match>
  677. <Class name="org.apache.fop.render.awt.viewer.PreviewDialog"/>
  678. <Field name="translator"/>
  679. <Bug pattern="SE_BAD_FIELD"/>
  680. </Match>
  681. <Match>
  682. <Class name="org.apache.fop.render.awt.viewer.PreviewPanel"/>
  683. <Field name="foUserAgent"/>
  684. <Bug pattern="SE_BAD_FIELD"/>
  685. </Match>
  686. <Match>
  687. <Class name="org.apache.fop.render.awt.viewer.PreviewPanel"/>
  688. <Field name="reloader"/>
  689. <Bug pattern="SE_BAD_FIELD"/>
  690. </Match>
  691. <Match>
  692. <Class name="org.apache.fop.render.awt.viewer.PreviewPanel"/>
  693. <Field name="renderer"/>
  694. <Bug pattern="SE_BAD_FIELD"/>
  695. </Match>
  696. <Match>
  697. <Class name="org.apache.fop.render.awt.viewer.PreviewPanel"/>
  698. <Field name="scroller"/>
  699. <Bug pattern="SE_BAD_FIELD"/>
  700. </Match>
  701. <Match>
  702. <Class name="org.apache.fop.servlet.FopServlet"/>
  703. <Field name="fopFactory"/>
  704. <Bug pattern="SE_BAD_FIELD"/>
  705. </Match>
  706. <Match>
  707. <Class name="org.apache.fop.servlet.FopServlet"/>
  708. <Field name="transFactory"/>
  709. <Bug pattern="SE_BAD_FIELD"/>
  710. </Match>
  711. <Match>
  712. <Class name="org.apache.fop.servlet.FopServlet"/>
  713. <Field name="uriResolver"/>
  714. <Bug pattern="SE_BAD_FIELD"/>
  715. </Match>
  716. <Match>
  717. <Class name="org.apache.fop.layoutmgr.AbstractBreaker$BlockSequence"/>
  718. <!--Neither method nor field-->
  719. <Bug pattern="SE_BAD_FIELD_INNER_CLASS"/>
  720. </Match>
  721. <Match>
  722. <Class name="org.apache.fop.layoutmgr.inline.LineLayoutManager$Paragraph"/>
  723. <!--Neither method nor field-->
  724. <Bug pattern="SE_BAD_FIELD_INNER_CLASS"/>
  725. </Match>
  726. <Match>
  727. <Class name="org.apache.fop.afp.AFPPaintingState"/>
  728. <Field name="colorConverter"/>
  729. <Bug pattern="SE_BAD_FIELD_STORE"/>
  730. </Match>
  731. <Match>
  732. <Class name="org.apache.fop.afp.AFPPaintingState"/>
  733. <Field name="colorConverter"/>
  734. <Bug pattern="SE_BAD_FIELD_STORE"/>
  735. </Match>
  736. <Match>
  737. <Class name="org.apache.fop.fo.pagination.PageProductionException"/>
  738. <Field name="locator"/>
  739. <Bug pattern="SE_BAD_FIELD_STORE"/>
  740. </Match>
  741. <Match>
  742. <Class name="org.apache.fop.servlet.FopServlet"/>
  743. <Field name="uriResolver"/>
  744. <Bug pattern="SE_BAD_FIELD_STORE"/>
  745. </Match>
  746. <Match>
  747. <Class name="org.apache.fop.pdf.DestinationComparator"/>
  748. <!--Neither method nor field-->
  749. <Bug pattern="SE_COMPARATOR_SHOULD_BE_SERIALIZABLE"/>
  750. </Match>
  751. <Match>
  752. <Class name="org.apache.fop.afp.AFPPaintingState$AFPData"/>
  753. <!--Neither method nor field-->
  754. <Bug pattern="SE_INNER_CLASS"/>
  755. </Match>
  756. <Match>
  757. <Class name="org.apache.fop.area.LineArea$LineAdjustingInfo"/>
  758. <!--Neither method nor field-->
  759. <Bug pattern="SE_INNER_CLASS"/>
  760. </Match>
  761. <Match>
  762. <Class name="org.apache.fop.area.inline.AbstractTextArea$TextAdjustingInfo"/>
  763. <!--Neither method nor field-->
  764. <Bug pattern="SE_INNER_CLASS"/>
  765. </Match>
  766. <Match>
  767. <Class name="org.apache.fop.area.inline.InlineArea$InlineAdjustingInfo"/>
  768. <!--Neither method nor field-->
  769. <Bug pattern="SE_INNER_CLASS"/>
  770. </Match>
  771. <Match>
  772. <Class name="org.apache.fop.pdf.PDFPaintingState$PDFData"/>
  773. <!--Neither method nor field-->
  774. <Bug pattern="SE_INNER_CLASS"/>
  775. </Match>
  776. <Match>
  777. <Class name="org.apache.fop.util.AbstractPaintingState$StateStack"/>
  778. <!--Neither method nor field-->
  779. <Bug pattern="SE_INNER_CLASS"/>
  780. </Match>
  781. <Match>
  782. <Class name="org.apache.fop.afp.AFPPaintingState"/>
  783. <Field name="pagePaintingState"/>
  784. <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
  785. </Match>
  786. <Match>
  787. <Class name="org.apache.fop.afp.AFPPaintingState"/>
  788. <Field name="unitConv"/>
  789. <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
  790. </Match>
  791. <Match>
  792. <Class name="org.apache.fop.area.Block"/>
  793. <Field name="allowBPDUpdate"/>
  794. <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
  795. </Match>
  796. <Match>
  797. <Class name="org.apache.fop.area.inline.InlineParent"/>
  798. <Field name="autoSize"/>
  799. <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
  800. </Match>
  801. <Match>
  802. <Class name="org.apache.fop.area.inline.UnresolvedPageNumber"/>
  803. <Field name="font"/>
  804. <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
  805. </Match>
  806. <Match>
  807. <Class name="org.apache.fop.fonts.FontCache"/>
  808. <Field name="changed"/>
  809. <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
  810. </Match>
  811. <Match>
  812. <Class name="org.apache.fop.fonts.FontTriplet"/>
  813. <Field name="key"/>
  814. <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
  815. </Match>
  816. <Match>
  817. <Class name="org.apache.fop.hyphenation.HyphenationTree"/>
  818. <Field name="ivalues"/>
  819. <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
  820. </Match>
  821. <Match>
  822. <Class name="org.apache.fop.afp.apps.FontPatternExtractor"/>
  823. <Method name="extract"/>
  824. <Bug pattern="SR_NOT_CHECKED"/>
  825. </Match>
  826. <Match>
  827. <Class name="org.apache.fop.afp.parser.UnparsedStructuredField"/>
  828. <Method name="readStructuredField"/>
  829. <Bug pattern="SR_NOT_CHECKED"/>
  830. </Match>
  831. <Match>
  832. <Class name="org.apache.fop.fonts.type1.PFMFile"/>
  833. <Method name="loadExtMetrics"/>
  834. <Bug pattern="SR_NOT_CHECKED"/>
  835. </Match>
  836. <Match>
  837. <Class name="org.apache.fop.fonts.type1.PFMFile"/>
  838. <Method name="loadExtension"/>
  839. <Bug pattern="SR_NOT_CHECKED"/>
  840. </Match>
  841. <Match>
  842. <Class name="org.apache.fop.fonts.type1.PFMFile"/>
  843. <Method name="loadHeader"/>
  844. <Bug pattern="SR_NOT_CHECKED"/>
  845. </Match>
  846. <Match>
  847. <Class name="org.apache.fop.render.pdf.ImageRawJPEGAdapter"/>
  848. <Method name="outputContents"/>
  849. <Bug pattern="SR_NOT_CHECKED"/>
  850. </Match>
  851. <Match>
  852. <Class name="org.apache.fop.cli.ImageInputHandler"/>
  853. <Method name="createXSLTSource"/>
  854. <Bug pattern="UI_INHERITANCE_UNSAFE_GETRESOURCE"/>
  855. </Match>
  856. <Match>
  857. <Class name="org.apache.fop.hyphenation.PatternParser"/>
  858. <Method name="getExternalClasses"/>
  859. <Bug pattern="UI_INHERITANCE_UNSAFE_GETRESOURCE"/>
  860. </Match>
  861. <Match>
  862. <Class name="org.apache.fop.pdf.PDFFactory"/>
  863. <Method name="makeFontFile"/>
  864. <Bug pattern="UI_INHERITANCE_UNSAFE_GETRESOURCE"/>
  865. </Match>
  866. <Match>
  867. <Class name="org.apache.fop.render.awt.viewer.PreviewDialogAboutBox"/>
  868. <Method name="&lt;init&gt;"/>
  869. <Bug pattern="UI_INHERITANCE_UNSAFE_GETRESOURCE"/>
  870. </Match>
  871. <Match>
  872. <Class name="org.apache.fop.fonts.truetype.TTFSubSetFile"/>
  873. <Method name="readUShort"/>
  874. <Bug pattern="BIT_IOR_OF_SIGNED_BYTE"/>
  875. </Match>
  876. <Match>
  877. <Class name="org.apache.fop.fonts.truetype.TTFDirTabEntry"/>
  878. <Method name="toString"/>
  879. <Bug pattern="DMI_INVOKING_TOSTRING_ON_ARRAY"/>
  880. </Match>
  881. <Match>
  882. <Class name="org.apache.fop.util.AbstractPaintingState$AbstractData"/>
  883. <Method name="toString"/>
  884. <Bug pattern="DMI_INVOKING_TOSTRING_ON_ARRAY"/>
  885. </Match>
  886. <Match>
  887. <Class name="org.apache.fop.area.BookmarkData"/>
  888. <Method name="addSubData"/>
  889. <Bug pattern="EC_UNRELATED_TYPES"/>
  890. </Match>
  891. <Match>
  892. <Class name="org.apache.fop.layoutmgr.inline.AlignmentContext"/>
  893. <Method name="setBaselineShift"/>
  894. <Bug pattern="ICAST_INT_CAST_TO_FLOAT_PASSED_TO_ROUND"/>
  895. </Match>
  896. <Match>
  897. <Class name="org.apache.fop.area.inline.WordArea"/>
  898. <!-- Listing the field does not work; this makes the filter apply to all masked fields -->
  899. <Bug pattern="MF_CLASS_MASKS_FIELD"/>
  900. </Match>
  901. <Match>
  902. <Class name="org.apache.fop.layoutmgr.inline.AbstractPageNumberCitationLayoutManager"/>
  903. <!-- Listing the field does not work; this makes the filter apply to all masked fields -->
  904. <Bug pattern="MF_CLASS_MASKS_FIELD"/>
  905. </Match>
  906. <Match>
  907. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfAfterBeforeBase"/>
  908. <!-- Listing the field does not work; this makes the filter apply to all masked fields -->
  909. <Bug pattern="MF_CLASS_MASKS_FIELD"/>
  910. </Match>
  911. <Match>
  912. <Class name="org.apache.fop.svg.AbstractFOPTranscoder"/>
  913. <!-- Listing the field does not work; this makes the filter apply to all masked fields -->
  914. <Bug pattern="MF_CLASS_MASKS_FIELD"/>
  915. </Match>
  916. <Match>
  917. <Class name="org.apache.fop.render.ps.PSSVGHandler"/>
  918. <Method name="renderSVGDocument"/>
  919. <Bug pattern="NP_GUARANTEED_DEREF"/>
  920. </Match>
  921. <Match>
  922. <Class name="org.apache.fop.layoutmgr.BlockStackingLayoutManager"/>
  923. <Method name="negotiateBPDAdjustment"/>
  924. <Bug pattern="NP_NULL_ON_SOME_PATH"/>
  925. </Match>
  926. <Match>
  927. <Class name="org.apache.fop.layoutmgr.PageBreakingAlgorithm"/>
  928. <Method name="handleFootnotes"/>
  929. <Bug pattern="NP_NULL_ON_SOME_PATH"/>
  930. </Match>
  931. <Match>
  932. <Class name="org.apache.fop.render.bitmap.PNGRenderer"/>
  933. <Method name="writeImage"/>
  934. <Bug pattern="NP_NULL_ON_SOME_PATH"/>
  935. </Match>
  936. <Match>
  937. <Class name="org.apache.fop.render.bitmap.TIFFRenderer"/>
  938. <Method name="stopRenderer"/>
  939. <Bug pattern="NP_NULL_ON_SOME_PATH"/>
  940. </Match>
  941. <Match>
  942. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTableRow"/>
  943. <Method name="writeRowAndCellsDefintions"/>
  944. <Bug pattern="NP_NULL_ON_SOME_PATH"/>
  945. </Match>
  946. <Match>
  947. <Class name="org.apache.fop.svg.AbstractFOPImageElementBridge"/>
  948. <Method name="createImageGraphicsNode"/>
  949. <Bug pattern="NP_NULL_ON_SOME_PATH"/>
  950. </Match>
  951. <Match>
  952. <Class name="org.apache.fop.tools.TestConverter"/>
  953. <Method name="main"/>
  954. <Bug pattern="NP_NULL_ON_SOME_PATH"/>
  955. </Match>
  956. <Match>
  957. <Class name="org.apache.fop.apps.FopFactory"/>
  958. <Method name="setHyphenBaseURL"/>
  959. <Bug pattern="NP_NULL_PARAM_DEREF"/>
  960. </Match>
  961. <Match>
  962. <Class name="org.apache.fop.events.EventFormatter"/>
  963. <Method name="format"/>
  964. <Bug pattern="NP_NULL_PARAM_DEREF"/>
  965. </Match>
  966. <Match>
  967. <Class name="org.apache.fop.fo.pagination.PageProductionException$PageProductionExceptionFactory"/>
  968. <Method name="createException"/>
  969. <Bug pattern="NP_NULL_PARAM_DEREF"/>
  970. </Match>
  971. <Match>
  972. <Class name="org.apache.fop.fo.properties.CommonTextDecoration"/>
  973. <Method name="calcTextDecoration"/>
  974. <Bug pattern="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE"/>
  975. </Match>
  976. <Match>
  977. <Class name="org.apache.fop.fonts.FontInfoConfigurator"/>
  978. <Method name="getFontInfo"/>
  979. <Bug pattern="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE"/>
  980. </Match>
  981. <Match>
  982. <Class name="org.apache.fop.layoutmgr.SpaceResolver"/>
  983. <Method name="toString"/>
  984. <Bug pattern="RV_EXCEPTION_NOT_THROWN"/>
  985. </Match>
  986. <Match>
  987. <Class name="org.apache.fop.pdf.PDFFactory"/>
  988. <Method name="makeFontFile"/>
  989. <Bug pattern="RV_EXCEPTION_NOT_THROWN"/>
  990. </Match>
  991. <Match>
  992. <Class name="org.apache.fop.render.java2d.Java2DRenderer"/>
  993. <Method name="stopRenderer"/>
  994. <Bug pattern="RV_EXCEPTION_NOT_THROWN"/>
  995. </Match>
  996. <Match>
  997. <Class name="org.apache.fop.render.ps.PSFontUtils"/>
  998. <Method name="getInputStreamOnFont"/>
  999. <Bug pattern="RV_EXCEPTION_NOT_THROWN"/>
  1000. </Match>
  1001. <Match>
  1002. <Class name="org.apache.fop.hyphenation.HyphenationTreeCache"/>
  1003. <Method name="constructUserKey"/>
  1004. <Bug pattern="RV_RETURN_VALUE_IGNORED"/>
  1005. </Match>
  1006. <Match>
  1007. <Class name="org.apache.fop.afp.AFPResourceLevel"/>
  1008. <Method name="equals"/>
  1009. <Bug pattern="SA_FIELD_SELF_COMPARISON"/>
  1010. </Match>
  1011. <Match>
  1012. <Class name="org.apache.fop.render.print.PageableRenderer"/>
  1013. <Method name="processOptions"/>
  1014. <Bug pattern="SA_FIELD_SELF_COMPARISON"/>
  1015. </Match>
  1016. <Match>
  1017. <Class name="org.apache.fop.fo.extensions.svg.SVGElement$1"/>
  1018. <Method name="deselectAll"/>
  1019. <Bug pattern="UMAC_UNCALLABLE_METHOD_OF_ANONYMOUS_CLASS"/>
  1020. </Match>
  1021. <Match>
  1022. <Class name="org.apache.batik.dom.svg.SVGContext"/>
  1023. <!--Neither method nor field-->
  1024. <Bug pattern="UMAC_UNCALLABLE_METHOD_OF_ANONYMOUS_CLASS"/>
  1025. </Match>
  1026. <Match>
  1027. <Class name="org.apache.fop.afp.modca.ObjectAreaPosition"/>
  1028. <Field name="xOffset"/>
  1029. <Bug pattern="UWF_UNWRITTEN_FIELD"/>
  1030. </Match>
  1031. <Match>
  1032. <Class name="org.apache.fop.afp.modca.ObjectAreaPosition"/>
  1033. <Field name="yOffset"/>
  1034. <Bug pattern="UWF_UNWRITTEN_FIELD"/>
  1035. </Match>
  1036. <Match>
  1037. <Class name="org.apache.fop.fonts.truetype.TTFDirTabEntry"/>
  1038. <Field name="checksum"/>
  1039. <Bug pattern="UWF_UNWRITTEN_FIELD"/>
  1040. </Match>
  1041. <Match>
  1042. <Class name="org.apache.fop.layoutmgr.list.ListItemContentLayoutManager"/>
  1043. <Field name="itemIPD"/>
  1044. <Bug pattern="UWF_UNWRITTEN_FIELD"/>
  1045. </Match>
  1046. <Match>
  1047. <Class name="org.apache.fop.afp.AFPResourceLevel"/>
  1048. <Method name="valueOf"/>
  1049. <Bug pattern="DM_CONVERT_CASE"/>
  1050. </Match>
  1051. <Match>
  1052. <Class name="org.apache.fop.afp.AFPResourceLevelDefaults"/>
  1053. <Method name="getResourceType"/>
  1054. <Bug pattern="DM_CONVERT_CASE"/>
  1055. </Match>
  1056. <Match>
  1057. <Class name="org.apache.fop.afp.AFPResourceLevelDefaults"/>
  1058. <Method name="registerResourceTypeName"/>
  1059. <Bug pattern="DM_CONVERT_CASE"/>
  1060. </Match>
  1061. <Match>
  1062. <Class name="org.apache.fop.afp.apps.FontPatternExtractor"/>
  1063. <Method name="extract"/>
  1064. <Bug pattern="DM_CONVERT_CASE"/>
  1065. </Match>
  1066. <Match>
  1067. <Class name="org.apache.fop.afp.parser.UnparsedStructuredField"/>
  1068. <Method name="getCategoryCodeAsString"/>
  1069. <Bug pattern="DM_CONVERT_CASE"/>
  1070. </Match>
  1071. <Match>
  1072. <Class name="org.apache.fop.afp.parser.UnparsedStructuredField"/>
  1073. <Method name="getTypeCodeAsString"/>
  1074. <Bug pattern="DM_CONVERT_CASE"/>
  1075. </Match>
  1076. <Match>
  1077. <Class name="org.apache.fop.afp.parser.UnparsedStructuredField"/>
  1078. <Method name="toString"/>
  1079. <Bug pattern="DM_CONVERT_CASE"/>
  1080. </Match>
  1081. <Match>
  1082. <Class name="org.apache.fop.apps.FopFactoryConfigurator"/>
  1083. <Method name="configure"/>
  1084. <Bug pattern="DM_CONVERT_CASE"/>
  1085. </Match>
  1086. <Match>
  1087. <Class name="org.apache.fop.apps.FopFactoryConfigurator"/>
  1088. <Method name="configureImageLoading"/>
  1089. <Bug pattern="DM_CONVERT_CASE"/>
  1090. </Match>
  1091. <Match>
  1092. <Class name="org.apache.fop.fo.pagination.PageNumberGenerator"/>
  1093. <Method name="makeFormattedPageNumber"/>
  1094. <Bug pattern="DM_CONVERT_CASE"/>
  1095. </Match>
  1096. <Match>
  1097. <Class name="org.apache.fop.fo.properties.CondLengthProperty"/>
  1098. <Method name="toString"/>
  1099. <Bug pattern="DM_CONVERT_CASE"/>
  1100. </Match>
  1101. <Match>
  1102. <Class name="org.apache.fop.fonts.FontInfo"/>
  1103. <Method name="getTripletsForName"/>
  1104. <Bug pattern="DM_CONVERT_CASE"/>
  1105. </Match>
  1106. <Match>
  1107. <Class name="org.apache.fop.fonts.FontLoader"/>
  1108. <Method name="isType1"/>
  1109. <Bug pattern="DM_CONVERT_CASE"/>
  1110. </Match>
  1111. <Match>
  1112. <Class name="org.apache.fop.fonts.autodetect.FontInfoFinder"/>
  1113. <Method name="generateTripletsFromFont"/>
  1114. <Bug pattern="DM_CONVERT_CASE"/>
  1115. </Match>
  1116. <Match>
  1117. <Class name="org.apache.fop.fonts.substitute.FontQualifier"/>
  1118. <Method name="match"/>
  1119. <Bug pattern="DM_CONVERT_CASE"/>
  1120. </Match>
  1121. <Match>
  1122. <Class name="org.apache.fop.pdf.PDFFactory"/>
  1123. <Method name="getExternalAction"/>
  1124. <Bug pattern="DM_CONVERT_CASE"/>
  1125. </Match>
  1126. <Match>
  1127. <Class name="org.apache.fop.render.bitmap.MultiFileRenderingUtil"/>
  1128. <Method name="&lt;init&gt;"/>
  1129. <Bug pattern="DM_CONVERT_CASE"/>
  1130. </Match>
  1131. <Match>
  1132. <Class name="org.apache.fop.render.java2d.InstalledFontCollection"/>
  1133. <Method name="setup"/>
  1134. <Bug pattern="DM_CONVERT_CASE"/>
  1135. </Match>
  1136. <Match>
  1137. <Class name="org.apache.fop.render.rtf.FoUnitsConverter"/>
  1138. <Method name="numberToTwips"/>
  1139. <Bug pattern="DM_CONVERT_CASE"/>
  1140. </Match>
  1141. <Match>
  1142. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfColorTable"/>
  1143. <Method name="addNamedColor"/>
  1144. <Bug pattern="DM_CONVERT_CASE"/>
  1145. </Match>
  1146. <Match>
  1147. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfColorTable"/>
  1148. <Method name="getColorNumber"/>
  1149. <Bug pattern="DM_CONVERT_CASE"/>
  1150. </Match>
  1151. <Match>
  1152. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfFontManager"/>
  1153. <Method name="getFontKey"/>
  1154. <Bug pattern="DM_CONVERT_CASE"/>
  1155. </Match>
  1156. <Match>
  1157. <Class name="org.apache.fop.tools.anttasks.FOPTaskStarter"/>
  1158. <Method name="replaceExtension"/>
  1159. <Bug pattern="DM_CONVERT_CASE"/>
  1160. </Match>
  1161. <Match>
  1162. <Class name="org.apache.fop.util.ColorUtil"/>
  1163. <Method name="parseColorString"/>
  1164. <Bug pattern="DM_CONVERT_CASE"/>
  1165. </Match>
  1166. <Match>
  1167. <Class name="org.apache.fop.afp.AFPDataObjectInfo"/>
  1168. <Method name="getData"/>
  1169. <Bug pattern="EI_EXPOSE_REP"/>
  1170. </Match>
  1171. <Match>
  1172. <Class name="org.apache.fop.afp.modca.Registry$ObjectType"/>
  1173. <Method name="getOID"/>
  1174. <Bug pattern="EI_EXPOSE_REP"/>
  1175. </Match>
  1176. <Match>
  1177. <Class name="org.apache.fop.afp.parser.UnparsedStructuredField"/>
  1178. <Method name="getData"/>
  1179. <Bug pattern="EI_EXPOSE_REP"/>
  1180. </Match>
  1181. <Match>
  1182. <Class name="org.apache.fop.afp.parser.UnparsedStructuredField"/>
  1183. <Method name="getExtData"/>
  1184. <Bug pattern="EI_EXPOSE_REP"/>
  1185. </Match>
  1186. <Match>
  1187. <Class name="org.apache.fop.afp.parser.UnparsedStructuredField"/>
  1188. <Method name="getIntroducerData"/>
  1189. <Bug pattern="EI_EXPOSE_REP"/>
  1190. </Match>
  1191. <Match>
  1192. <Class name="org.apache.fop.apps.FOUserAgent"/>
  1193. <Method name="getCreationDate"/>
  1194. <Bug pattern="EI_EXPOSE_REP"/>
  1195. </Match>
  1196. <Match>
  1197. <Class name="org.apache.fop.area.DestinationData"/>
  1198. <Method name="getIDRefs"/>
  1199. <Bug pattern="EI_EXPOSE_REP"/>
  1200. </Match>
  1201. <Match>
  1202. <Class name="org.apache.fop.area.inline.WordArea"/>
  1203. <Method name="getLetterAdjustArray"/>
  1204. <Bug pattern="EI_EXPOSE_REP"/>
  1205. </Match>
  1206. <Match>
  1207. <Class name="org.apache.fop.fo.extensions.xmp.XMPContentHandlerFactory"/>
  1208. <Method name="getSupportedNamespaces"/>
  1209. <Bug pattern="EI_EXPOSE_REP"/>
  1210. </Match>
  1211. <Match>
  1212. <Class name="org.apache.fop.fo.properties.CommonBorderPaddingBackground"/>
  1213. <Method name="getBorderInfo"/>
  1214. <Bug pattern="EI_EXPOSE_REP"/>
  1215. </Match>
  1216. <Match>
  1217. <Class name="org.apache.fop.fo.properties.CommonBorderPaddingBackground"/>
  1218. <Method name="getPadding"/>
  1219. <Bug pattern="EI_EXPOSE_REP"/>
  1220. </Match>
  1221. <Match>
  1222. <Class name="org.apache.fop.fonts.CustomFont"/>
  1223. <Method name="getFontBBox"/>
  1224. <Bug pattern="EI_EXPOSE_REP"/>
  1225. </Match>
  1226. <Match>
  1227. <Class name="org.apache.fop.hyphenation.ByteVector"/>
  1228. <Method name="getArray"/>
  1229. <Bug pattern="EI_EXPOSE_REP"/>
  1230. </Match>
  1231. <Match>
  1232. <Class name="org.apache.fop.hyphenation.CharVector"/>
  1233. <Method name="getArray"/>
  1234. <Bug pattern="EI_EXPOSE_REP"/>
  1235. </Match>
  1236. <Match>
  1237. <Class name="org.apache.fop.hyphenation.Hyphenation"/>
  1238. <Method name="getHyphenationPoints"/>
  1239. <Bug pattern="EI_EXPOSE_REP"/>
  1240. </Match>
  1241. <Match>
  1242. <Class name="org.apache.fop.image.loader.batik.ImageLoaderFactorySVG"/>
  1243. <Method name="getSupportedFlavors"/>
  1244. <Bug pattern="EI_EXPOSE_REP"/>
  1245. </Match>
  1246. <Match>
  1247. <Class name="org.apache.fop.image.loader.batik.ImageLoaderFactorySVG"/>
  1248. <Method name="getSupportedMIMETypes"/>
  1249. <Bug pattern="EI_EXPOSE_REP"/>
  1250. </Match>
  1251. <Match>
  1252. <Class name="org.apache.fop.image.loader.batik.ImageLoaderFactoryWMF"/>
  1253. <Method name="getSupportedFlavors"/>
  1254. <Bug pattern="EI_EXPOSE_REP"/>
  1255. </Match>
  1256. <Match>
  1257. <Class name="org.apache.fop.image.loader.batik.ImageLoaderFactoryWMF"/>
  1258. <Method name="getSupportedMIMETypes"/>
  1259. <Bug pattern="EI_EXPOSE_REP"/>
  1260. </Match>
  1261. <Match>
  1262. <Class name="org.apache.fop.pdf.PDFEncryptionJCE"/>
  1263. <Method name="getFileID"/>
  1264. <Bug pattern="EI_EXPOSE_REP"/>
  1265. </Match>
  1266. <Match>
  1267. <Class name="org.apache.fop.pdf.PDFInfo"/>
  1268. <Method name="getCreationDate"/>
  1269. <Bug pattern="EI_EXPOSE_REP"/>
  1270. </Match>
  1271. <Match>
  1272. <Class name="org.apache.fop.pdf.PDFInfo"/>
  1273. <Method name="getModDate"/>
  1274. <Bug pattern="EI_EXPOSE_REP"/>
  1275. </Match>
  1276. <Match>
  1277. <Class name="org.apache.fop.render.afp.AFPDocumentHandlerMaker"/>
  1278. <Method name="getSupportedMimeTypes"/>
  1279. <Bug pattern="EI_EXPOSE_REP"/>
  1280. </Match>
  1281. <Match>
  1282. <Class name="org.apache.fop.render.afp.AFPImageHandlerGraphics2D"/>
  1283. <Method name="getSupportedImageFlavors"/>
  1284. <Bug pattern="EI_EXPOSE_REP"/>
  1285. </Match>
  1286. <Match>
  1287. <Class name="org.apache.fop.render.afp.AFPImageHandlerRawCCITTFax"/>
  1288. <Method name="getSupportedImageFlavors"/>
  1289. <Bug pattern="EI_EXPOSE_REP"/>
  1290. </Match>
  1291. <Match>
  1292. <Class name="org.apache.fop.render.afp.AFPImageHandlerRawStream"/>
  1293. <Method name="getSupportedImageFlavors"/>
  1294. <Bug pattern="EI_EXPOSE_REP"/>
  1295. </Match>
  1296. <Match>
  1297. <Class name="org.apache.fop.render.afp.AFPImageHandlerRenderedImage"/>
  1298. <Method name="getSupportedImageFlavors"/>
  1299. <Bug pattern="EI_EXPOSE_REP"/>
  1300. </Match>
  1301. <Match>
  1302. <Class name="org.apache.fop.render.afp.AFPImageHandlerSVG"/>
  1303. <Method name="getSupportedImageFlavors"/>
  1304. <Bug pattern="EI_EXPOSE_REP"/>
  1305. </Match>
  1306. <Match>
  1307. <Class name="org.apache.fop.render.afp.extensions.AFPExtensionHandlerFactory"/>
  1308. <Method name="getSupportedNamespaces"/>
  1309. <Bug pattern="EI_EXPOSE_REP"/>
  1310. </Match>
  1311. <Match>
  1312. <Class name="org.apache.fop.render.awt.AWTRendererMaker"/>
  1313. <Method name="getSupportedMimeTypes"/>
  1314. <Bug pattern="EI_EXPOSE_REP"/>
  1315. </Match>
  1316. <Match>
  1317. <Class name="org.apache.fop.render.bitmap.PNGDocumentHandlerMaker"/>
  1318. <Method name="getSupportedMimeTypes"/>
  1319. <Bug pattern="EI_EXPOSE_REP"/>
  1320. </Match>
  1321. <Match>
  1322. <Class name="org.apache.fop.render.bitmap.PNGRendererMaker"/>
  1323. <Method name="getSupportedMimeTypes"/>
  1324. <Bug pattern="EI_EXPOSE_REP"/>
  1325. </Match>
  1326. <Match>
  1327. <Class name="org.apache.fop.render.bitmap.TIFFDocumentHandlerMaker"/>
  1328. <Method name="getSupportedMimeTypes"/>
  1329. <Bug pattern="EI_EXPOSE_REP"/>
  1330. </Match>
  1331. <Match>
  1332. <Class name="org.apache.fop.render.bitmap.TIFFRendererMaker"/>
  1333. <Method name="getSupportedMimeTypes"/>
  1334. <Bug pattern="EI_EXPOSE_REP"/>
  1335. </Match>
  1336. <Match>
  1337. <Class name="org.apache.fop.render.intermediate.IFGraphicContext$Group"/>
  1338. <Method name="getTransforms"/>
  1339. <Bug pattern="EI_EXPOSE_REP"/>
  1340. </Match>
  1341. <Match>
  1342. <Class name="org.apache.fop.render.java2d.Java2DFontMetrics"/>
  1343. <Method name="getWidths"/>
  1344. <Bug pattern="EI_EXPOSE_REP"/>
  1345. </Match>
  1346. <Match>
  1347. <Class name="org.apache.fop.render.pcl.PCLDocumentHandlerMaker"/>
  1348. <Method name="getSupportedMimeTypes"/>
  1349. <Bug pattern="EI_EXPOSE_REP"/>
  1350. </Match>
  1351. <Match>
  1352. <Class name="org.apache.fop.render.pdf.PDFDocumentHandlerMaker"/>
  1353. <Method name="getSupportedMimeTypes"/>
  1354. <Bug pattern="EI_EXPOSE_REP"/>
  1355. </Match>
  1356. <Match>
  1357. <Class name="org.apache.fop.render.pdf.PDFImageHandlerGraphics2D"/>
  1358. <Method name="getSupportedImageFlavors"/>
  1359. <Bug pattern="EI_EXPOSE_REP"/>
  1360. </Match>
  1361. <Match>
  1362. <Class name="org.apache.fop.render.pdf.PDFImageHandlerRawCCITTFax"/>
  1363. <Method name="getSupportedImageFlavors"/>
  1364. <Bug pattern="EI_EXPOSE_REP"/>
  1365. </Match>
  1366. <Match>
  1367. <Class name="org.apache.fop.render.pdf.PDFImageHandlerRawJPEG"/>
  1368. <Method name="getSupportedImageFlavors"/>
  1369. <Bug pattern="EI_EXPOSE_REP"/>
  1370. </Match>
  1371. <Match>
  1372. <Class name="org.apache.fop.render.pdf.PDFImageHandlerRenderedImage"/>
  1373. <Method name="getSupportedImageFlavors"/>
  1374. <Bug pattern="EI_EXPOSE_REP"/>
  1375. </Match>
  1376. <Match>
  1377. <Class name="org.apache.fop.render.print.PrintRendererMaker"/>
  1378. <Method name="getSupportedMimeTypes"/>
  1379. <Bug pattern="EI_EXPOSE_REP"/>
  1380. </Match>
  1381. <Match>
  1382. <Class name="org.apache.fop.render.ps.PSDocumentHandlerMaker"/>
  1383. <Method name="getSupportedMimeTypes"/>
  1384. <Bug pattern="EI_EXPOSE_REP"/>
  1385. </Match>
  1386. <Match>
  1387. <Class name="org.apache.fop.render.ps.PSImageHandlerEPS"/>
  1388. <Method name="getSupportedImageFlavors"/>
  1389. <Bug pattern="EI_EXPOSE_REP"/>
  1390. </Match>
  1391. <Match>
  1392. <Class name="org.apache.fop.render.ps.PSImageHandlerGraphics2D"/>
  1393. <Method name="getSupportedImageFlavors"/>
  1394. <Bug pattern="EI_EXPOSE_REP"/>
  1395. </Match>
  1396. <Match>
  1397. <Class name="org.apache.fop.render.ps.PSImageHandlerRawCCITTFax"/>
  1398. <Method name="getSupportedImageFlavors"/>
  1399. <Bug pattern="EI_EXPOSE_REP"/>
  1400. </Match>
  1401. <Match>
  1402. <Class name="org.apache.fop.render.ps.PSImageHandlerRawJPEG"/>
  1403. <Method name="getSupportedImageFlavors"/>
  1404. <Bug pattern="EI_EXPOSE_REP"/>
  1405. </Match>
  1406. <Match>
  1407. <Class name="org.apache.fop.render.ps.PSImageHandlerRenderedImage"/>
  1408. <Method name="getSupportedImageFlavors"/>
  1409. <Bug pattern="EI_EXPOSE_REP"/>
  1410. </Match>
  1411. <Match>
  1412. <Class name="org.apache.fop.render.ps.PSImageHandlerSVG"/>
  1413. <Method name="getSupportedImageFlavors"/>
  1414. <Bug pattern="EI_EXPOSE_REP"/>
  1415. </Match>
  1416. <Match>
  1417. <Class name="org.apache.fop.render.ps.extensions.PSExtensionHandlerFactory"/>
  1418. <Method name="getSupportedNamespaces"/>
  1419. <Bug pattern="EI_EXPOSE_REP"/>
  1420. </Match>
  1421. <Match>
  1422. <Class name="org.apache.fop.render.rtf.RTFFOEventHandlerMaker"/>
  1423. <Method name="getSupportedMimeTypes"/>
  1424. <Bug pattern="EI_EXPOSE_REP"/>
  1425. </Match>
  1426. <Match>
  1427. <Class name="org.apache.fop.render.txt.TXTRendererMaker"/>
  1428. <Method name="getSupportedMimeTypes"/>
  1429. <Bug pattern="EI_EXPOSE_REP"/>
  1430. </Match>
  1431. <Match>
  1432. <Class name="org.apache.fop.render.xml.XMLRendererMaker"/>
  1433. <Method name="getSupportedMimeTypes"/>
  1434. <Bug pattern="EI_EXPOSE_REP"/>
  1435. </Match>
  1436. <Match>
  1437. <Class name="org.apache.fop.afp.AFPDataObjectInfo"/>
  1438. <Method name="setData"/>
  1439. <Bug pattern="EI_EXPOSE_REP2"/>
  1440. </Match>
  1441. <Match>
  1442. <Class name="org.apache.fop.afp.goca.AbstractGraphicsCoord"/>
  1443. <Method name="&lt;init&gt;"/>
  1444. <Bug pattern="EI_EXPOSE_REP2"/>
  1445. </Match>
  1446. <Match>
  1447. <Class name="org.apache.fop.afp.goca.GraphicsChainedSegment"/>
  1448. <Method name="&lt;init&gt;"/>
  1449. <Bug pattern="EI_EXPOSE_REP2"/>
  1450. </Match>
  1451. <Match>
  1452. <Class name="org.apache.fop.afp.goca.GraphicsImage"/>
  1453. <Method name="&lt;init&gt;"/>
  1454. <Bug pattern="EI_EXPOSE_REP2"/>
  1455. </Match>
  1456. <Match>
  1457. <Class name="org.apache.fop.afp.ioca.ImageContent"/>
  1458. <Method name="setImageData"/>
  1459. <Bug pattern="EI_EXPOSE_REP2"/>
  1460. </Match>
  1461. <Match>
  1462. <Class name="org.apache.fop.afp.ioca.ImageRasterData"/>
  1463. <Method name="&lt;init&gt;"/>
  1464. <Bug pattern="EI_EXPOSE_REP2"/>
  1465. </Match>
  1466. <Match>
  1467. <Class name="org.apache.fop.afp.modca.ObjectContainer"/>
  1468. <Method name="setData"/>
  1469. <Bug pattern="EI_EXPOSE_REP2"/>
  1470. </Match>
  1471. <Match>
  1472. <Class name="org.apache.fop.afp.modca.Registry$ObjectType"/>
  1473. <Method name="&lt;init&gt;"/>
  1474. <Bug pattern="EI_EXPOSE_REP2"/>
  1475. </Match>
  1476. <Match>
  1477. <Class name="org.apache.fop.afp.modca.triplets.PresentationSpaceMixingRulesTriplet"/>
  1478. <Method name="&lt;init&gt;"/>
  1479. <Bug pattern="EI_EXPOSE_REP2"/>
  1480. </Match>
  1481. <Match>
  1482. <Class name="org.apache.fop.apps.FOUserAgent"/>
  1483. <Method name="setCreationDate"/>
  1484. <Bug pattern="EI_EXPOSE_REP2"/>
  1485. </Match>
  1486. <Match>
  1487. <Class name="org.apache.fop.area.inline.WordArea"/>
  1488. <Method name="&lt;init&gt;"/>
  1489. <Bug pattern="EI_EXPOSE_REP2"/>
  1490. </Match>
  1491. <Match>
  1492. <Class name="org.apache.fop.fo.properties.DimensionPropertyMaker"/>
  1493. <Method name="setExtraCorresponding"/>
  1494. <Bug pattern="EI_EXPOSE_REP2"/>
  1495. </Match>
  1496. <Match>
  1497. <Class name="org.apache.fop.fo.properties.IndentPropertyMaker"/>
  1498. <Method name="setBorderWidthCorresponding"/>
  1499. <Bug pattern="EI_EXPOSE_REP2"/>
  1500. </Match>
  1501. <Match>
  1502. <Class name="org.apache.fop.fo.properties.IndentPropertyMaker"/>
  1503. <Method name="setPaddingCorresponding"/>
  1504. <Bug pattern="EI_EXPOSE_REP2"/>
  1505. </Match>
  1506. <Match>
  1507. <Class name="org.apache.fop.fonts.CustomFont"/>
  1508. <Method name="setFontBBox"/>
  1509. <Bug pattern="EI_EXPOSE_REP2"/>
  1510. </Match>
  1511. <Match>
  1512. <Class name="org.apache.fop.fonts.MultiByteFont"/>
  1513. <Method name="setBFEntries"/>
  1514. <Bug pattern="EI_EXPOSE_REP2"/>
  1515. </Match>
  1516. <Match>
  1517. <Class name="org.apache.fop.fonts.MultiByteFont"/>
  1518. <Method name="setWidthArray"/>
  1519. <Bug pattern="EI_EXPOSE_REP2"/>
  1520. </Match>
  1521. <Match>
  1522. <Class name="org.apache.fop.fonts.type1.PFBData"/>
  1523. <Method name="setEncryptedSegment"/>
  1524. <Bug pattern="EI_EXPOSE_REP2"/>
  1525. </Match>
  1526. <Match>
  1527. <Class name="org.apache.fop.fonts.type1.PFBData"/>
  1528. <Method name="setHeaderSegment"/>
  1529. <Bug pattern="EI_EXPOSE_REP2"/>
  1530. </Match>
  1531. <Match>
  1532. <Class name="org.apache.fop.fonts.type1.PFBData"/>
  1533. <Method name="setTrailerSegment"/>
  1534. <Bug pattern="EI_EXPOSE_REP2"/>
  1535. </Match>
  1536. <Match>
  1537. <Class name="org.apache.fop.hyphenation.ByteVector"/>
  1538. <Method name="&lt;init&gt;"/>
  1539. <Bug pattern="EI_EXPOSE_REP2"/>
  1540. </Match>
  1541. <Match>
  1542. <Class name="org.apache.fop.hyphenation.ByteVector"/>
  1543. <Method name="&lt;init&gt;"/>
  1544. <Bug pattern="EI_EXPOSE_REP2"/>
  1545. </Match>
  1546. <Match>
  1547. <Class name="org.apache.fop.hyphenation.CharVector"/>
  1548. <Method name="&lt;init&gt;"/>
  1549. <Bug pattern="EI_EXPOSE_REP2"/>
  1550. </Match>
  1551. <Match>
  1552. <Class name="org.apache.fop.hyphenation.CharVector"/>
  1553. <Method name="&lt;init&gt;"/>
  1554. <Bug pattern="EI_EXPOSE_REP2"/>
  1555. </Match>
  1556. <Match>
  1557. <Class name="org.apache.fop.layoutmgr.inline.HyphContext"/>
  1558. <Method name="&lt;init&gt;"/>
  1559. <Bug pattern="EI_EXPOSE_REP2"/>
  1560. </Match>
  1561. <Match>
  1562. <Class name="org.apache.fop.pdf.BitmapImage"/>
  1563. <Method name="&lt;init&gt;"/>
  1564. <Bug pattern="EI_EXPOSE_REP2"/>
  1565. </Match>
  1566. <Match>
  1567. <Class name="org.apache.fop.pdf.PDFCIDFont"/>
  1568. <Method name="setDW2"/>
  1569. <Bug pattern="EI_EXPOSE_REP2"/>
  1570. </Match>
  1571. <Match>
  1572. <Class name="org.apache.fop.pdf.PDFInfo"/>
  1573. <Method name="setCreationDate"/>
  1574. <Bug pattern="EI_EXPOSE_REP2"/>
  1575. </Match>
  1576. <Match>
  1577. <Class name="org.apache.fop.pdf.PDFInfo"/>
  1578. <Method name="setModDate"/>
  1579. <Bug pattern="EI_EXPOSE_REP2"/>
  1580. </Match>
  1581. <Match>
  1582. <Class name="org.apache.fop.pdf.PDFToUnicodeCMap"/>
  1583. <Method name="&lt;init&gt;"/>
  1584. <Bug pattern="EI_EXPOSE_REP2"/>
  1585. </Match>
  1586. <Match>
  1587. <Class name="org.apache.fop.render.intermediate.IFGraphicContext$Group"/>
  1588. <Method name="&lt;init&gt;"/>
  1589. <Bug pattern="EI_EXPOSE_REP2"/>
  1590. </Match>
  1591. <Match>
  1592. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfExternalGraphic"/>
  1593. <Method name="setImageData"/>
  1594. <Bug pattern="EI_EXPOSE_REP2"/>
  1595. </Match>
  1596. <Match>
  1597. <Class name="org.apache.fop.svg.PDFTextUtil"/>
  1598. <Method name="setFonts"/>
  1599. <Bug pattern="EI_EXPOSE_REP2"/>
  1600. </Match>
  1601. <Match>
  1602. <Class name="org.apache.fop.fo.FOPropertyMapping"/>
  1603. <Method name="getGenericMappings"/>
  1604. <Bug pattern="MS_EXPOSE_REP"/>
  1605. </Match>
  1606. <Match>
  1607. <Class name="org.apache.fop.afp.ptoca.PtocaConstants"/>
  1608. <Field name="ESCAPE"/>
  1609. <Bug pattern="MS_OOI_PKGPROTECT"/>
  1610. </Match>
  1611. <Match>
  1612. <Class name="org.apache.fop.render.ps.PSSupportedFlavors"/>
  1613. <Field name="LEVEL_2_FLAVORS_FORM"/>
  1614. <Bug pattern="MS_OOI_PKGPROTECT"/>
  1615. </Match>
  1616. <Match>
  1617. <Class name="org.apache.fop.render.ps.PSSupportedFlavors"/>
  1618. <Field name="LEVEL_2_FLAVORS_INLINE"/>
  1619. <Bug pattern="MS_OOI_PKGPROTECT"/>
  1620. </Match>
  1621. <Match>
  1622. <Class name="org.apache.fop.render.ps.PSSupportedFlavors"/>
  1623. <Field name="LEVEL_3_FLAVORS_FORM"/>
  1624. <Bug pattern="MS_OOI_PKGPROTECT"/>
  1625. </Match>
  1626. <Match>
  1627. <Class name="org.apache.fop.render.ps.PSSupportedFlavors"/>
  1628. <Field name="LEVEL_3_FLAVORS_INLINE"/>
  1629. <Bug pattern="MS_OOI_PKGPROTECT"/>
  1630. </Match>
  1631. <Match>
  1632. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.IBorderAttributes"/>
  1633. <Field name="BORDERS"/>
  1634. <Bug pattern="MS_OOI_PKGPROTECT"/>
  1635. </Match>
  1636. <Match>
  1637. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.ITableAttributes"/>
  1638. <Field name="ATTRIB_CELL_PADDING"/>
  1639. <Bug pattern="MS_OOI_PKGPROTECT"/>
  1640. </Match>
  1641. <Match>
  1642. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.ITableAttributes"/>
  1643. <Field name="ATTRIB_ROW_PADDING"/>
  1644. <Bug pattern="MS_OOI_PKGPROTECT"/>
  1645. </Match>
  1646. <Match>
  1647. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.ITableAttributes"/>
  1648. <Field name="CELL_BORDER"/>
  1649. <Bug pattern="MS_OOI_PKGPROTECT"/>
  1650. </Match>
  1651. <Match>
  1652. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.ITableAttributes"/>
  1653. <Field name="CELL_COLOR"/>
  1654. <Bug pattern="MS_OOI_PKGPROTECT"/>
  1655. </Match>
  1656. <Match>
  1657. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.ITableAttributes"/>
  1658. <Field name="CELL_VERT_ALIGN"/>
  1659. <Bug pattern="MS_OOI_PKGPROTECT"/>
  1660. </Match>
  1661. <Match>
  1662. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.ITableAttributes"/>
  1663. <Field name="ROW_BORDER"/>
  1664. <Bug pattern="MS_OOI_PKGPROTECT"/>
  1665. </Match>
  1666. <Match>
  1667. <Class name="org.apache.fop.fonts.Glyphs"/>
  1668. <Field name="UNICODE_GLYPHS"/>
  1669. <Bug pattern="MS_PKGPROTECT"/>
  1670. </Match>
  1671. <Match>
  1672. <Class name="org.apache.fop.fonts.Glyphs"/>
  1673. <Field name="MAC_GLYPH_NAMES"/>
  1674. <Bug pattern="MS_PKGPROTECT"/>
  1675. </Match>
  1676. <Match>
  1677. <Class name="org.apache.fop.fonts.Glyphs"/>
  1678. <Field name="TEX8R_GLYPH_NAMES"/>
  1679. <Bug pattern="MS_PKGPROTECT"/>
  1680. </Match>
  1681. <Match>
  1682. <Class name="org.apache.fop.fonts.Glyphs"/>
  1683. <Field name="WINANSI_ENCODING"/>
  1684. <Bug pattern="MS_PKGPROTECT"/>
  1685. </Match>
  1686. <Match>
  1687. <Class name="org.apache.fop.fonts.apps.AbstractFontReader"/>
  1688. <Field name="log"/>
  1689. <Bug pattern="MS_PKGPROTECT"/>
  1690. </Match>
  1691. <Match>
  1692. <Class name="org.apache.fop.render.pcl.PCLGenerator"/>
  1693. <Field name="PCL_RESOLUTIONS"/>
  1694. <Bug pattern="MS_PKGPROTECT"/>
  1695. </Match>
  1696. <Match>
  1697. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfAfter"/>
  1698. <Field name="FOOTER_ATTR"/>
  1699. <Bug pattern="MS_PKGPROTECT"/>
  1700. </Match>
  1701. <Match>
  1702. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfBefore"/>
  1703. <Field name="HEADER_ATTR"/>
  1704. <Bug pattern="MS_PKGPROTECT"/>
  1705. </Match>
  1706. <Match>
  1707. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListTable"/>
  1708. <Field name="LIST_TABLE_ATTR"/>
  1709. <Bug pattern="MS_PKGPROTECT"/>
  1710. </Match>
  1711. <Match>
  1712. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfPage"/>
  1713. <Field name="PAGE_ATTR"/>
  1714. <Bug pattern="MS_PKGPROTECT"/>
  1715. </Match>
  1716. <Match>
  1717. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfText"/>
  1718. <Field name="ALIGNMENT"/>
  1719. <Bug pattern="MS_PKGPROTECT"/>
  1720. </Match>
  1721. <Match>
  1722. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfText"/>
  1723. <Field name="ATTR_NAMES"/>
  1724. <Bug pattern="MS_PKGPROTECT"/>
  1725. </Match>
  1726. <Match>
  1727. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfText"/>
  1728. <Field name="BORDER"/>
  1729. <Bug pattern="MS_PKGPROTECT"/>
  1730. </Match>
  1731. <Match>
  1732. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfText"/>
  1733. <Field name="INDENT"/>
  1734. <Bug pattern="MS_PKGPROTECT"/>
  1735. </Match>
  1736. <Match>
  1737. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfText"/>
  1738. <Field name="TABS"/>
  1739. <Bug pattern="MS_PKGPROTECT"/>
  1740. </Match>
  1741. <Match>
  1742. <Class name="org.apache.fop.render.awt.viewer.ImageProxyPanel"/>
  1743. <Field name="imageRef"/>
  1744. <Bug pattern="IS2_INCONSISTENT_SYNC"/>
  1745. </Match>
  1746. <Match>
  1747. <Class name="org.apache.fop.render.awt.viewer.PreviewPanel$ViewportScroller"/>
  1748. <Field name="startPosX"/>
  1749. <Bug pattern="IS2_INCONSISTENT_SYNC"/>
  1750. </Match>
  1751. <Match>
  1752. <Class name="org.apache.fop.render.awt.viewer.PreviewPanel$ViewportScroller"/>
  1753. <Field name="startPosY"/>
  1754. <Bug pattern="IS2_INCONSISTENT_SYNC"/>
  1755. </Match>
  1756. <Match>
  1757. <Class name="org.apache.fop.afp.fonts.CharacterSetBuilder"/>
  1758. <Method name="getInstance"/>
  1759. <Bug pattern="LI_LAZY_INIT_STATIC"/>
  1760. </Match>
  1761. <Match>
  1762. <Class name="org.apache.fop.datatypes.ValidationPercentBaseContext"/>
  1763. <Method name="getPseudoContext"/>
  1764. <Bug pattern="LI_LAZY_INIT_STATIC"/>
  1765. </Match>
  1766. <Match>
  1767. <Class name="org.apache.fop.fo.FOPropertyMapping"/>
  1768. <Method name="getGenericMappings"/>
  1769. <Bug pattern="LI_LAZY_INIT_STATIC"/>
  1770. </Match>
  1771. <Match>
  1772. <Class name="org.apache.fop.fo.NullCharIterator"/>
  1773. <Method name="getInstance"/>
  1774. <Bug pattern="LI_LAZY_INIT_STATIC"/>
  1775. </Match>
  1776. <Match>
  1777. <Class name="org.apache.fop.fonts.apps.AbstractFontReader"/>
  1778. <Method name="&lt;init&gt;"/>
  1779. <Bug pattern="LI_LAZY_INIT_STATIC"/>
  1780. </Match>
  1781. <Match>
  1782. <Class name="org.apache.fop.layoutmgr.table.CollapsingBorderModel"/>
  1783. <Method name="getBorderModelFor"/>
  1784. <Bug pattern="LI_LAZY_INIT_STATIC"/>
  1785. </Match>
  1786. <Match>
  1787. <Class name="org.apache.fop.pdf.StreamCacheFactory"/>
  1788. <Method name="getInstance"/>
  1789. <Bug pattern="LI_LAZY_INIT_STATIC"/>
  1790. </Match>
  1791. <Match>
  1792. <Class name="org.apache.fop.pdf.StreamCacheFactory"/>
  1793. <Method name="getInstance"/>
  1794. <Bug pattern="LI_LAZY_INIT_STATIC"/>
  1795. </Match>
  1796. <Match>
  1797. <Class name="org.apache.fop.render.java2d.SystemFontMetricsMapper"/>
  1798. <Method name="&lt;init&gt;"/>
  1799. <Bug pattern="LI_LAZY_INIT_STATIC"/>
  1800. </Match>
  1801. <Match>
  1802. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfColorTable"/>
  1803. <Method name="getInstance"/>
  1804. <Bug pattern="LI_LAZY_INIT_STATIC"/>
  1805. </Match>
  1806. <Match>
  1807. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfFontManager"/>
  1808. <Method name="getInstance"/>
  1809. <Bug pattern="LI_LAZY_INIT_STATIC"/>
  1810. </Match>
  1811. <Match>
  1812. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfStyleSheetTable"/>
  1813. <Method name="getInstance"/>
  1814. <Bug pattern="LI_LAZY_INIT_STATIC"/>
  1815. </Match>
  1816. <Match>
  1817. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTemplate"/>
  1818. <Method name="getInstance"/>
  1819. <Bug pattern="LI_LAZY_INIT_STATIC"/>
  1820. </Match>
  1821. <Match>
  1822. <Class name="org.apache.fop.fo.PropertyList"/>
  1823. <Method name="isInherited"/>
  1824. <Bug pattern="LI_LAZY_INIT_UPDATE_STATIC"/>
  1825. </Match>
  1826. <Match>
  1827. <Class name="org.apache.fop.pdf.PDFObject"/>
  1828. <Method name="formatDateTime"/>
  1829. <Bug pattern="STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE"/>
  1830. </Match>
  1831. <Match>
  1832. <Class name="org.apache.fop.pdf.PDFObject"/>
  1833. <Field name="DATE_FORMAT"/>
  1834. <Bug pattern="STCAL_STATIC_SIMPLE_DATE_FORMAT_INSTANCE"/>
  1835. </Match>
  1836. <Match>
  1837. <Class name="org.apache.fop.fonts.MultiByteFont"/>
  1838. <Method name="&lt;init&gt;"/>
  1839. <Bug pattern="WL_USING_GETCLASS_RATHER_THAN_CLASS_LITERAL"/>
  1840. </Match>
  1841. <Match>
  1842. <Class name="org.apache.fop.render.rtf.rtflib.tools.TableContext"/>
  1843. <Method name="decreaseRowSpannings"/>
  1844. <Bug pattern="DM_BOOLEAN_CTOR"/>
  1845. </Match>
  1846. <Match>
  1847. <Class name="org.apache.fop.render.rtf.rtflib.tools.TableContext"/>
  1848. <Method name="setCurrentFirstSpanningCol"/>
  1849. <Bug pattern="DM_BOOLEAN_CTOR"/>
  1850. </Match>
  1851. <Match>
  1852. <Class name="org.apache.fop.render.rtf.rtflib.tools.TableContext"/>
  1853. <Method name="setNextFirstSpanningCol"/>
  1854. <Bug pattern="DM_BOOLEAN_CTOR"/>
  1855. </Match>
  1856. <Match>
  1857. <Class name="org.apache.fop.svg.PDFGraphics2D"/>
  1858. <Method name="applyPaint"/>
  1859. <Bug pattern="DM_BOOLEAN_CTOR"/>
  1860. </Match>
  1861. <Match>
  1862. <Class name="org.apache.fop.tools.TestConverter"/>
  1863. <Method name="runTest"/>
  1864. <Bug pattern="DM_BOOLEAN_CTOR"/>
  1865. </Match>
  1866. <Match>
  1867. <Class name="org.apache.fop.fo.properties.CharacterProperty"/>
  1868. <Method name="getString"/>
  1869. <Bug pattern="DM_BOXED_PRIMITIVE_TOSTRING"/>
  1870. </Match>
  1871. <Match>
  1872. <Class name="org.apache.fop.fonts.Glyphs"/>
  1873. <Method name="charToGlyphName"/>
  1874. <Bug pattern="DM_BOXED_PRIMITIVE_TOSTRING"/>
  1875. </Match>
  1876. <Match>
  1877. <Class name="org.apache.fop.fo.expr.NumericProperty"/>
  1878. <Method name="getNumber"/>
  1879. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1880. </Match>
  1881. <Match>
  1882. <Class name="org.apache.fop.fo.properties.NumberProperty"/>
  1883. <Method name="&lt;init&gt;"/>
  1884. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1885. </Match>
  1886. <Match>
  1887. <Class name="org.apache.fop.fonts.type1.AFMParser$AbstractValueHandler"/>
  1888. <Method name="getNumberValue"/>
  1889. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1890. </Match>
  1891. <Match>
  1892. <Class name="org.apache.fop.fonts.type1.AFMParser$DoubleSetter"/>
  1893. <Method name="parse"/>
  1894. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1895. </Match>
  1896. <Match>
  1897. <Class name="org.apache.fop.fonts.type1.AFMParser$WritingDirDoubleSetter"/>
  1898. <Method name="parse"/>
  1899. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1900. </Match>
  1901. <Match>
  1902. <Class name="org.apache.fop.pdf.PDFArray"/>
  1903. <Method name="&lt;init&gt;"/>
  1904. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1905. </Match>
  1906. <Match>
  1907. <Class name="org.apache.fop.pdf.PDFArray"/>
  1908. <Method name="add"/>
  1909. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1910. </Match>
  1911. <Match>
  1912. <Class name="org.apache.fop.pdf.PDFArray"/>
  1913. <Method name="set"/>
  1914. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1915. </Match>
  1916. <Match>
  1917. <Class name="org.apache.fop.pdf.PDFColor"/>
  1918. <Method name="getVector"/>
  1919. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1920. </Match>
  1921. <Match>
  1922. <Class name="org.apache.fop.pdf.PDFFactory"/>
  1923. <Method name="makeGradient"/>
  1924. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1925. </Match>
  1926. <Match>
  1927. <Class name="org.apache.fop.pdf.PDFFunction"/>
  1928. <Method name="toPDF"/>
  1929. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1930. </Match>
  1931. <Match>
  1932. <Class name="org.apache.fop.pdf.PDFGState"/>
  1933. <Method name="setAlpha"/>
  1934. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1935. </Match>
  1936. <Match>
  1937. <Class name="org.apache.fop.pdf.PDFImageXObject"/>
  1938. <Method name="populateDictionaryFromImage"/>
  1939. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1940. </Match>
  1941. <Match>
  1942. <Class name="org.apache.fop.pdf.PDFPattern"/>
  1943. <Method name="output"/>
  1944. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1945. </Match>
  1946. <Match>
  1947. <Class name="org.apache.fop.render.java2d.Java2DFontMetrics"/>
  1948. <Method name="getBaseFont"/>
  1949. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1950. </Match>
  1951. <Match>
  1952. <Class name="org.apache.fop.render.ps.PSDocumentHandler"/>
  1953. <Method name="startPage"/>
  1954. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1955. </Match>
  1956. <Match>
  1957. <Class name="org.apache.fop.render.rtf.FoUnitsConverter"/>
  1958. <Method name="&lt;clinit&gt;"/>
  1959. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1960. </Match>
  1961. <Match>
  1962. <Class name="org.apache.fop.render.rtf.RTFHandler"/>
  1963. <Method name="startColumn"/>
  1964. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1965. </Match>
  1966. <Match>
  1967. <Class name="org.apache.fop.render.rtf.rtflib.tools.TableContext"/>
  1968. <Method name="getColumnWidth"/>
  1969. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1970. </Match>
  1971. <Match>
  1972. <Class name="org.apache.fop.svg.AbstractFOPTextPainter"/>
  1973. <Method name="getFont"/>
  1974. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1975. </Match>
  1976. <Match>
  1977. <Class name="org.apache.fop.svg.PDFGraphics2D"/>
  1978. <Method name="applyAlpha"/>
  1979. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1980. </Match>
  1981. <Match>
  1982. <Class name="org.apache.fop.svg.PDFGraphics2D"/>
  1983. <Method name="applyPaint"/>
  1984. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1985. </Match>
  1986. <Match>
  1987. <Class name="org.apache.fop.svg.PDFGraphics2D"/>
  1988. <Method name="createPattern"/>
  1989. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  1990. </Match>
  1991. <Match>
  1992. <Class name="org.apache.fop.afp.AFPResourceLevelDefaults"/>
  1993. <Method name="getDefaultResourceLevel"/>
  1994. <Bug pattern="DM_NUMBER_CTOR"/>
  1995. </Match>
  1996. <Match>
  1997. <Class name="org.apache.fop.afp.AFPResourceLevelDefaults"/>
  1998. <Method name="registerResourceTypeName"/>
  1999. <Bug pattern="DM_NUMBER_CTOR"/>
  2000. </Match>
  2001. <Match>
  2002. <Class name="org.apache.fop.afp.AFPResourceLevelDefaults"/>
  2003. <Method name="setDefaultResourceLevel"/>
  2004. <Bug pattern="DM_NUMBER_CTOR"/>
  2005. </Match>
  2006. <Match>
  2007. <Class name="org.apache.fop.afp.fonts.RasterFont"/>
  2008. <Method name="addCharacterSet"/>
  2009. <Bug pattern="DM_NUMBER_CTOR"/>
  2010. </Match>
  2011. <Match>
  2012. <Class name="org.apache.fop.afp.fonts.RasterFont"/>
  2013. <Method name="getCharacterSet"/>
  2014. <Bug pattern="DM_NUMBER_CTOR"/>
  2015. </Match>
  2016. <Match>
  2017. <Class name="org.apache.fop.area.LineArea"/>
  2018. <Method name="handleIPDVariation"/>
  2019. <Bug pattern="DM_NUMBER_CTOR"/>
  2020. </Match>
  2021. <Match>
  2022. <Class name="org.apache.fop.area.Trait"/>
  2023. <Method name="&lt;clinit&gt;"/>
  2024. <Bug pattern="DM_NUMBER_CTOR"/>
  2025. </Match>
  2026. <Match>
  2027. <Class name="org.apache.fop.fo.CharIterator"/>
  2028. <Method name="next"/>
  2029. <Bug pattern="DM_NUMBER_CTOR"/>
  2030. </Match>
  2031. <Match>
  2032. <Class name="org.apache.fop.fo.FOPropertyMapping"/>
  2033. <Method name="addPropertyMaker"/>
  2034. <Bug pattern="DM_NUMBER_CTOR"/>
  2035. </Match>
  2036. <Match>
  2037. <Class name="org.apache.fop.fo.FOPropertyMapping"/>
  2038. <Method name="addSubpropMakerName"/>
  2039. <Bug pattern="DM_NUMBER_CTOR"/>
  2040. </Match>
  2041. <Match>
  2042. <Class name="org.apache.fop.fo.FOPropertyMapping"/>
  2043. <Method name="getPropertyName"/>
  2044. <Bug pattern="DM_NUMBER_CTOR"/>
  2045. </Match>
  2046. <Match>
  2047. <Class name="org.apache.fop.fo.properties.CharacterProperty"/>
  2048. <Method name="getObject"/>
  2049. <Bug pattern="DM_NUMBER_CTOR"/>
  2050. </Match>
  2051. <Match>
  2052. <Class name="org.apache.fop.fo.properties.CharacterProperty"/>
  2053. <Method name="getString"/>
  2054. <Bug pattern="DM_NUMBER_CTOR"/>
  2055. </Match>
  2056. <Match>
  2057. <Class name="org.apache.fop.fo.properties.NumberProperty"/>
  2058. <Method name="&lt;init&gt;"/>
  2059. <Bug pattern="DM_NUMBER_CTOR"/>
  2060. </Match>
  2061. <Match>
  2062. <Class name="org.apache.fop.fo.properties.NumberProperty"/>
  2063. <Method name="&lt;init&gt;"/>
  2064. <Bug pattern="DM_NUMBER_CTOR"/>
  2065. </Match>
  2066. <Match>
  2067. <Class name="org.apache.fop.fo.properties.NumberProperty"/>
  2068. <Method name="&lt;init&gt;"/>
  2069. <Bug pattern="DM_NUMBER_CTOR"/>
  2070. </Match>
  2071. <Match>
  2072. <Class name="org.apache.fop.fonts.AbstractCodePointMapping"/>
  2073. <Method name="mapChar"/>
  2074. <Bug pattern="DM_NUMBER_CTOR"/>
  2075. </Match>
  2076. <Match>
  2077. <Class name="org.apache.fop.fonts.AbstractCodePointMapping"/>
  2078. <Method name="putFallbackCharacter"/>
  2079. <Bug pattern="DM_NUMBER_CTOR"/>
  2080. </Match>
  2081. <Match>
  2082. <Class name="org.apache.fop.fonts.CIDSubset"/>
  2083. <Method name="getGlyphIndexForSubsetIndex"/>
  2084. <Bug pattern="DM_NUMBER_CTOR"/>
  2085. </Match>
  2086. <Match>
  2087. <Class name="org.apache.fop.fonts.CIDSubset"/>
  2088. <Method name="getUnicodeForSubsetIndex"/>
  2089. <Bug pattern="DM_NUMBER_CTOR"/>
  2090. </Match>
  2091. <Match>
  2092. <Class name="org.apache.fop.fonts.CIDSubset"/>
  2093. <Method name="mapSubsetChar"/>
  2094. <Bug pattern="DM_NUMBER_CTOR"/>
  2095. </Match>
  2096. <Match>
  2097. <Class name="org.apache.fop.fonts.CIDSubset"/>
  2098. <Method name="mapSubsetChar"/>
  2099. <Bug pattern="DM_NUMBER_CTOR"/>
  2100. </Match>
  2101. <Match>
  2102. <Class name="org.apache.fop.fonts.CIDSubset"/>
  2103. <Method name="setupFirstThreeGlyphs"/>
  2104. <Bug pattern="DM_NUMBER_CTOR"/>
  2105. </Match>
  2106. <Match>
  2107. <Class name="org.apache.fop.fonts.Font"/>
  2108. <Method name="getKernValue"/>
  2109. <Bug pattern="DM_NUMBER_CTOR"/>
  2110. </Match>
  2111. <Match>
  2112. <Class name="org.apache.fop.fonts.FontCache"/>
  2113. <Method name="registerFailedFont"/>
  2114. <Bug pattern="DM_NUMBER_CTOR"/>
  2115. </Match>
  2116. <Match>
  2117. <Class name="org.apache.fop.fonts.FontInfo"/>
  2118. <Method name="addFontProperties"/>
  2119. <Bug pattern="DM_NUMBER_CTOR"/>
  2120. </Match>
  2121. <Match>
  2122. <Class name="org.apache.fop.fonts.FontInfo"/>
  2123. <Method name="getFontInstance"/>
  2124. <Bug pattern="DM_NUMBER_CTOR"/>
  2125. </Match>
  2126. <Match>
  2127. <Class name="org.apache.fop.fonts.Glyphs"/>
  2128. <Method name="charToGlyphName"/>
  2129. <Bug pattern="DM_NUMBER_CTOR"/>
  2130. </Match>
  2131. <Match>
  2132. <Class name="org.apache.fop.fonts.SimpleSingleByteEncoding"/>
  2133. <Method name="addCharacter"/>
  2134. <Bug pattern="DM_NUMBER_CTOR"/>
  2135. </Match>
  2136. <Match>
  2137. <Class name="org.apache.fop.fonts.SimpleSingleByteEncoding"/>
  2138. <Method name="mapChar"/>
  2139. <Bug pattern="DM_NUMBER_CTOR"/>
  2140. </Match>
  2141. <Match>
  2142. <Class name="org.apache.fop.fonts.SingleByteFont"/>
  2143. <Method name="addUnencodedCharacter"/>
  2144. <Bug pattern="DM_NUMBER_CTOR"/>
  2145. </Match>
  2146. <Match>
  2147. <Class name="org.apache.fop.fonts.SingleByteFont"/>
  2148. <Method name="getAdditionalWidths"/>
  2149. <Bug pattern="DM_NUMBER_CTOR"/>
  2150. </Match>
  2151. <Match>
  2152. <Class name="org.apache.fop.fonts.SingleByteFont"/>
  2153. <Method name="getWidth"/>
  2154. <Bug pattern="DM_NUMBER_CTOR"/>
  2155. </Match>
  2156. <Match>
  2157. <Class name="org.apache.fop.fonts.SingleByteFont"/>
  2158. <Method name="mapUnencodedChar"/>
  2159. <Bug pattern="DM_NUMBER_CTOR"/>
  2160. </Match>
  2161. <Match>
  2162. <Class name="org.apache.fop.fonts.Typeface"/>
  2163. <Method name="warnMissingGlyph"/>
  2164. <Bug pattern="DM_NUMBER_CTOR"/>
  2165. </Match>
  2166. <Match>
  2167. <Class name="org.apache.fop.fonts.apps.PFMReader"/>
  2168. <Method name="constructFontXML"/>
  2169. <Bug pattern="DM_NUMBER_CTOR"/>
  2170. </Match>
  2171. <Match>
  2172. <Class name="org.apache.fop.fonts.base14.Helvetica"/>
  2173. <Method name="&lt;clinit&gt;"/>
  2174. <Bug pattern="DM_NUMBER_CTOR"/>
  2175. </Match>
  2176. <Match>
  2177. <Class name="org.apache.fop.fonts.base14.Helvetica"/>
  2178. <Method name="&lt;clinit&gt;"/>
  2179. <Bug pattern="DM_NUMBER_CTOR"/>
  2180. </Match>
  2181. <Match>
  2182. <Class name="org.apache.fop.fonts.base14.HelveticaBold"/>
  2183. <Method name="&lt;clinit&gt;"/>
  2184. <Bug pattern="DM_NUMBER_CTOR"/>
  2185. </Match>
  2186. <Match>
  2187. <Class name="org.apache.fop.fonts.base14.HelveticaBold"/>
  2188. <Method name="&lt;clinit&gt;"/>
  2189. <Bug pattern="DM_NUMBER_CTOR"/>
  2190. </Match>
  2191. <Match>
  2192. <Class name="org.apache.fop.fonts.base14.HelveticaBoldOblique"/>
  2193. <Method name="&lt;clinit&gt;"/>
  2194. <Bug pattern="DM_NUMBER_CTOR"/>
  2195. </Match>
  2196. <Match>
  2197. <Class name="org.apache.fop.fonts.base14.HelveticaBoldOblique"/>
  2198. <Method name="&lt;clinit&gt;"/>
  2199. <Bug pattern="DM_NUMBER_CTOR"/>
  2200. </Match>
  2201. <Match>
  2202. <Class name="org.apache.fop.fonts.base14.HelveticaOblique"/>
  2203. <Method name="&lt;clinit&gt;"/>
  2204. <Bug pattern="DM_NUMBER_CTOR"/>
  2205. </Match>
  2206. <Match>
  2207. <Class name="org.apache.fop.fonts.base14.HelveticaOblique"/>
  2208. <Method name="&lt;clinit&gt;"/>
  2209. <Bug pattern="DM_NUMBER_CTOR"/>
  2210. </Match>
  2211. <Match>
  2212. <Class name="org.apache.fop.fonts.base14.TimesBold"/>
  2213. <Method name="&lt;clinit&gt;"/>
  2214. <Bug pattern="DM_NUMBER_CTOR"/>
  2215. </Match>
  2216. <Match>
  2217. <Class name="org.apache.fop.fonts.base14.TimesBold"/>
  2218. <Method name="&lt;clinit&gt;"/>
  2219. <Bug pattern="DM_NUMBER_CTOR"/>
  2220. </Match>
  2221. <Match>
  2222. <Class name="org.apache.fop.fonts.base14.TimesBoldItalic"/>
  2223. <Method name="&lt;clinit&gt;"/>
  2224. <Bug pattern="DM_NUMBER_CTOR"/>
  2225. </Match>
  2226. <Match>
  2227. <Class name="org.apache.fop.fonts.base14.TimesBoldItalic"/>
  2228. <Method name="&lt;clinit&gt;"/>
  2229. <Bug pattern="DM_NUMBER_CTOR"/>
  2230. </Match>
  2231. <Match>
  2232. <Class name="org.apache.fop.fonts.base14.TimesItalic"/>
  2233. <Method name="&lt;clinit&gt;"/>
  2234. <Bug pattern="DM_NUMBER_CTOR"/>
  2235. </Match>
  2236. <Match>
  2237. <Class name="org.apache.fop.fonts.base14.TimesItalic"/>
  2238. <Method name="&lt;clinit&gt;"/>
  2239. <Bug pattern="DM_NUMBER_CTOR"/>
  2240. </Match>
  2241. <Match>
  2242. <Class name="org.apache.fop.fonts.base14.TimesRoman"/>
  2243. <Method name="&lt;clinit&gt;"/>
  2244. <Bug pattern="DM_NUMBER_CTOR"/>
  2245. </Match>
  2246. <Match>
  2247. <Class name="org.apache.fop.fonts.base14.TimesRoman"/>
  2248. <Method name="&lt;clinit&gt;"/>
  2249. <Bug pattern="DM_NUMBER_CTOR"/>
  2250. </Match>
  2251. <Match>
  2252. <Class name="org.apache.fop.fonts.truetype.TTFFile"/>
  2253. <Method name="glyphToUnicode"/>
  2254. <Bug pattern="DM_NUMBER_CTOR"/>
  2255. </Match>
  2256. <Match>
  2257. <Class name="org.apache.fop.fonts.truetype.TTFFile"/>
  2258. <Method name="initAnsiWidths"/>
  2259. <Bug pattern="DM_NUMBER_CTOR"/>
  2260. </Match>
  2261. <Match>
  2262. <Class name="org.apache.fop.fonts.truetype.TTFFile"/>
  2263. <Method name="readKerning"/>
  2264. <Bug pattern="DM_NUMBER_CTOR"/>
  2265. </Match>
  2266. <Match>
  2267. <Class name="org.apache.fop.fonts.truetype.TTFFile"/>
  2268. <Method name="readUnicodeCmap"/>
  2269. <Bug pattern="DM_NUMBER_CTOR"/>
  2270. </Match>
  2271. <Match>
  2272. <Class name="org.apache.fop.fonts.truetype.TTFFile"/>
  2273. <Method name="unicodeToGlyph"/>
  2274. <Bug pattern="DM_NUMBER_CTOR"/>
  2275. </Match>
  2276. <Match>
  2277. <Class name="org.apache.fop.fonts.truetype.TTFFile"/>
  2278. <Method name="unicodeToWinAnsi"/>
  2279. <Bug pattern="DM_NUMBER_CTOR"/>
  2280. </Match>
  2281. <Match>
  2282. <Class name="org.apache.fop.fonts.truetype.TTFFile$UnicodeMapping"/>
  2283. <Method name="&lt;init&gt;"/>
  2284. <Bug pattern="DM_NUMBER_CTOR"/>
  2285. </Match>
  2286. <Match>
  2287. <Class name="org.apache.fop.fonts.truetype.TTFSubSetFile"/>
  2288. <Method name="getIncludedGlyphs"/>
  2289. <Bug pattern="DM_NUMBER_CTOR"/>
  2290. </Match>
  2291. <Match>
  2292. <Class name="org.apache.fop.fonts.truetype.TTFSubSetFile"/>
  2293. <Method name="remapComposite"/>
  2294. <Bug pattern="DM_NUMBER_CTOR"/>
  2295. </Match>
  2296. <Match>
  2297. <Class name="org.apache.fop.fonts.truetype.TTFSubSetFile"/>
  2298. <Method name="scanGlyphs"/>
  2299. <Bug pattern="DM_NUMBER_CTOR"/>
  2300. </Match>
  2301. <Match>
  2302. <Class name="org.apache.fop.fonts.type1.AFMFile"/>
  2303. <Method name="createXKerningMapEncoded"/>
  2304. <Bug pattern="DM_NUMBER_CTOR"/>
  2305. </Match>
  2306. <Match>
  2307. <Class name="org.apache.fop.fonts.type1.AFMParser"/>
  2308. <Method name="&lt;clinit&gt;"/>
  2309. <Bug pattern="DM_NUMBER_CTOR"/>
  2310. </Match>
  2311. <Match>
  2312. <Class name="org.apache.fop.fonts.type1.AFMParser$AbstractValueHandler"/>
  2313. <Method name="getNumberValue"/>
  2314. <Bug pattern="DM_NUMBER_CTOR"/>
  2315. </Match>
  2316. <Match>
  2317. <Class name="org.apache.fop.fonts.type1.AFMParser$IntegerSetter"/>
  2318. <Method name="parse"/>
  2319. <Bug pattern="DM_NUMBER_CTOR"/>
  2320. </Match>
  2321. <Match>
  2322. <Class name="org.apache.fop.fonts.type1.PFMFile"/>
  2323. <Method name="loadKernPairs"/>
  2324. <Bug pattern="DM_NUMBER_CTOR"/>
  2325. </Match>
  2326. <Match>
  2327. <Class name="org.apache.fop.layoutmgr.PageBreakingAlgorithm"/>
  2328. <Method name="handleFootnotes"/>
  2329. <Bug pattern="DM_NUMBER_CTOR"/>
  2330. </Match>
  2331. <Match>
  2332. <Class name="org.apache.fop.layoutmgr.TraitSetter"/>
  2333. <Method name="addFontTraits"/>
  2334. <Bug pattern="DM_NUMBER_CTOR"/>
  2335. </Match>
  2336. <Match>
  2337. <Class name="org.apache.fop.layoutmgr.TraitSetter"/>
  2338. <Method name="addMargins"/>
  2339. <Bug pattern="DM_NUMBER_CTOR"/>
  2340. </Match>
  2341. <Match>
  2342. <Class name="org.apache.fop.layoutmgr.TraitSetter"/>
  2343. <Method name="addPadding"/>
  2344. <Bug pattern="DM_NUMBER_CTOR"/>
  2345. </Match>
  2346. <Match>
  2347. <Class name="org.apache.fop.layoutmgr.TraitSetter"/>
  2348. <Method name="addSpaceTrait"/>
  2349. <Bug pattern="DM_NUMBER_CTOR"/>
  2350. </Match>
  2351. <Match>
  2352. <Class name="org.apache.fop.layoutmgr.TraitSetter"/>
  2353. <Method name="setBorderPaddingTraits"/>
  2354. <Bug pattern="DM_NUMBER_CTOR"/>
  2355. </Match>
  2356. <Match>
  2357. <Class name="org.apache.fop.layoutmgr.inline.LineLayoutManager"/>
  2358. <Method name="addInlineArea"/>
  2359. <Bug pattern="DM_NUMBER_CTOR"/>
  2360. </Match>
  2361. <Match>
  2362. <Class name="org.apache.fop.layoutmgr.table.RowPainter"/>
  2363. <Method name="recordRowOffset"/>
  2364. <Bug pattern="DM_NUMBER_CTOR"/>
  2365. </Match>
  2366. <Match>
  2367. <Class name="org.apache.fop.pdf.AbstractPDFStream"/>
  2368. <Method name="encodeAndWriteStream"/>
  2369. <Bug pattern="DM_NUMBER_CTOR"/>
  2370. </Match>
  2371. <Match>
  2372. <Class name="org.apache.fop.pdf.AbstractPDFStream"/>
  2373. <Method name="output"/>
  2374. <Bug pattern="DM_NUMBER_CTOR"/>
  2375. </Match>
  2376. <Match>
  2377. <Class name="org.apache.fop.pdf.PDFArray"/>
  2378. <Method name="&lt;init&gt;"/>
  2379. <Bug pattern="DM_NUMBER_CTOR"/>
  2380. </Match>
  2381. <Match>
  2382. <Class name="org.apache.fop.pdf.PDFCIDFont"/>
  2383. <Method name="&lt;init&gt;"/>
  2384. <Bug pattern="DM_NUMBER_CTOR"/>
  2385. </Match>
  2386. <Match>
  2387. <Class name="org.apache.fop.pdf.PDFCIDFont"/>
  2388. <Method name="setDW"/>
  2389. <Bug pattern="DM_NUMBER_CTOR"/>
  2390. </Match>
  2391. <Match>
  2392. <Class name="org.apache.fop.pdf.PDFCIDFontDescriptor"/>
  2393. <Method name="&lt;init&gt;"/>
  2394. <Bug pattern="DM_NUMBER_CTOR"/>
  2395. </Match>
  2396. <Match>
  2397. <Class name="org.apache.fop.pdf.PDFDictionary"/>
  2398. <Method name="put"/>
  2399. <Bug pattern="DM_NUMBER_CTOR"/>
  2400. </Match>
  2401. <Match>
  2402. <Class name="org.apache.fop.pdf.PDFDocument"/>
  2403. <Method name="&lt;clinit&gt;"/>
  2404. <Bug pattern="DM_NUMBER_CTOR"/>
  2405. </Match>
  2406. <Match>
  2407. <Class name="org.apache.fop.pdf.PDFDocument"/>
  2408. <Method name="setLocation"/>
  2409. <Bug pattern="DM_NUMBER_CTOR"/>
  2410. </Match>
  2411. <Match>
  2412. <Class name="org.apache.fop.pdf.PDFEmbeddedFile"/>
  2413. <Method name="populateStreamDict"/>
  2414. <Bug pattern="DM_NUMBER_CTOR"/>
  2415. </Match>
  2416. <Match>
  2417. <Class name="org.apache.fop.pdf.PDFEncoding$DifferencesBuilder"/>
  2418. <Method name="addDifference"/>
  2419. <Bug pattern="DM_NUMBER_CTOR"/>
  2420. </Match>
  2421. <Match>
  2422. <Class name="org.apache.fop.pdf.PDFEncryptionManager"/>
  2423. <Method name="newInstance"/>
  2424. <Bug pattern="DM_NUMBER_CTOR"/>
  2425. </Match>
  2426. <Match>
  2427. <Class name="org.apache.fop.pdf.PDFFontNonBase14"/>
  2428. <Method name="setWidthMetrics"/>
  2429. <Bug pattern="DM_NUMBER_CTOR"/>
  2430. </Match>
  2431. <Match>
  2432. <Class name="org.apache.fop.pdf.PDFFormXObject"/>
  2433. <Method name="&lt;init&gt;"/>
  2434. <Bug pattern="DM_NUMBER_CTOR"/>
  2435. </Match>
  2436. <Match>
  2437. <Class name="org.apache.fop.pdf.PDFImageXObject"/>
  2438. <Method name="populateDictionaryFromImage"/>
  2439. <Bug pattern="DM_NUMBER_CTOR"/>
  2440. </Match>
  2441. <Match>
  2442. <Class name="org.apache.fop.pdf.PDFLink"/>
  2443. <Method name="setStructParent"/>
  2444. <Bug pattern="DM_NUMBER_CTOR"/>
  2445. </Match>
  2446. <Match>
  2447. <Class name="org.apache.fop.pdf.PDFNumsArray"/>
  2448. <Method name="get"/>
  2449. <Bug pattern="DM_NUMBER_CTOR"/>
  2450. </Match>
  2451. <Match>
  2452. <Class name="org.apache.fop.pdf.PDFNumsArray"/>
  2453. <Method name="put"/>
  2454. <Bug pattern="DM_NUMBER_CTOR"/>
  2455. </Match>
  2456. <Match>
  2457. <Class name="org.apache.fop.pdf.PDFPage"/>
  2458. <Method name="setTransition"/>
  2459. <Bug pattern="DM_NUMBER_CTOR"/>
  2460. </Match>
  2461. <Match>
  2462. <Class name="org.apache.fop.pdf.PDFT1Stream"/>
  2463. <Method name="populateStreamDict"/>
  2464. <Bug pattern="DM_NUMBER_CTOR"/>
  2465. </Match>
  2466. <Match>
  2467. <Class name="org.apache.fop.render.PrintRenderer"/>
  2468. <Method name="createRendererContext"/>
  2469. <Bug pattern="DM_NUMBER_CTOR"/>
  2470. </Match>
  2471. <Match>
  2472. <Class name="org.apache.fop.render.awt.viewer.Command"/>
  2473. <Method name="&lt;init&gt;"/>
  2474. <Bug pattern="DM_NUMBER_CTOR"/>
  2475. </Match>
  2476. <Match>
  2477. <Class name="org.apache.fop.render.intermediate.IFRenderer"/>
  2478. <Method name="renderPage"/>
  2479. <Bug pattern="DM_NUMBER_CTOR"/>
  2480. </Match>
  2481. <Match>
  2482. <Class name="org.apache.fop.render.intermediate.IFRenderer"/>
  2483. <Method name="renderText"/>
  2484. <Bug pattern="DM_NUMBER_CTOR"/>
  2485. </Match>
  2486. <Match>
  2487. <Class name="org.apache.fop.render.pdf.ImageRenderedAdapter"/>
  2488. <Method name="getIndexOfFirstTransparentColorInPalette"/>
  2489. <Bug pattern="DM_NUMBER_CTOR"/>
  2490. </Match>
  2491. <Match>
  2492. <Class name="org.apache.fop.render.pdf.ImageRenderedAdapter"/>
  2493. <Method name="populateXObjectDictionary"/>
  2494. <Bug pattern="DM_NUMBER_CTOR"/>
  2495. </Match>
  2496. <Match>
  2497. <Class name="org.apache.fop.render.pdf.PDFDocumentHandler"/>
  2498. <Method name="getPageReference"/>
  2499. <Bug pattern="DM_NUMBER_CTOR"/>
  2500. </Match>
  2501. <Match>
  2502. <Class name="org.apache.fop.render.pdf.PDFDocumentHandler"/>
  2503. <Method name="startPage"/>
  2504. <Bug pattern="DM_NUMBER_CTOR"/>
  2505. </Match>
  2506. <Match>
  2507. <Class name="org.apache.fop.render.ps.ImageEncoderCCITTFax"/>
  2508. <Method name="getImplicitFilter"/>
  2509. <Bug pattern="DM_NUMBER_CTOR"/>
  2510. </Match>
  2511. <Match>
  2512. <Class name="org.apache.fop.render.ps.PSDocumentHandler"/>
  2513. <Method name="endDocument"/>
  2514. <Bug pattern="DM_NUMBER_CTOR"/>
  2515. </Match>
  2516. <Match>
  2517. <Class name="org.apache.fop.render.ps.PSDocumentHandler"/>
  2518. <Method name="startPage"/>
  2519. <Bug pattern="DM_NUMBER_CTOR"/>
  2520. </Match>
  2521. <Match>
  2522. <Class name="org.apache.fop.render.ps.PSDocumentHandler"/>
  2523. <Method name="startPage"/>
  2524. <Bug pattern="DM_NUMBER_CTOR"/>
  2525. </Match>
  2526. <Match>
  2527. <Class name="org.apache.fop.render.ps.PSDocumentHandler"/>
  2528. <Method name="writeHeader"/>
  2529. <Bug pattern="DM_NUMBER_CTOR"/>
  2530. </Match>
  2531. <Match>
  2532. <Class name="org.apache.fop.render.rtf.RTFHandler"/>
  2533. <Method name="startCell"/>
  2534. <Bug pattern="DM_NUMBER_CTOR"/>
  2535. </Match>
  2536. <Match>
  2537. <Class name="org.apache.fop.render.rtf.RTFHandler"/>
  2538. <Method name="startColumn"/>
  2539. <Bug pattern="DM_NUMBER_CTOR"/>
  2540. </Match>
  2541. <Match>
  2542. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfAttributes"/>
  2543. <Method name="set"/>
  2544. <Bug pattern="DM_NUMBER_CTOR"/>
  2545. </Match>
  2546. <Match>
  2547. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfColorTable"/>
  2548. <Method name="addColor"/>
  2549. <Bug pattern="DM_NUMBER_CTOR"/>
  2550. </Match>
  2551. <Match>
  2552. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfColorTable"/>
  2553. <Method name="addNamedColor"/>
  2554. <Bug pattern="DM_NUMBER_CTOR"/>
  2555. </Match>
  2556. <Match>
  2557. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfColorTable"/>
  2558. <Method name="getColorNumber"/>
  2559. <Bug pattern="DM_NUMBER_CTOR"/>
  2560. </Match>
  2561. <Match>
  2562. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfExternalGraphic"/>
  2563. <Method name="writeSizeInfo"/>
  2564. <Bug pattern="DM_NUMBER_CTOR"/>
  2565. </Match>
  2566. <Match>
  2567. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfFile"/>
  2568. <Method name="startListTable"/>
  2569. <Bug pattern="DM_NUMBER_CTOR"/>
  2570. </Match>
  2571. <Match>
  2572. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfFontManager"/>
  2573. <Method name="addFont"/>
  2574. <Bug pattern="DM_NUMBER_CTOR"/>
  2575. </Match>
  2576. <Match>
  2577. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfList"/>
  2578. <Method name="&lt;init&gt;"/>
  2579. <Bug pattern="DM_NUMBER_CTOR"/>
  2580. </Match>
  2581. <Match>
  2582. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListItem"/>
  2583. <Method name="writeRtfPrefix"/>
  2584. <Bug pattern="DM_NUMBER_CTOR"/>
  2585. </Match>
  2586. <Match>
  2587. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListStyleBullet"/>
  2588. <Method name="writeListPrefix"/>
  2589. <Bug pattern="DM_NUMBER_CTOR"/>
  2590. </Match>
  2591. <Match>
  2592. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListStyleNumber"/>
  2593. <Method name="writeLevelGroup"/>
  2594. <Bug pattern="DM_NUMBER_CTOR"/>
  2595. </Match>
  2596. <Match>
  2597. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListStyleNumber"/>
  2598. <Method name="writeListPrefix"/>
  2599. <Bug pattern="DM_NUMBER_CTOR"/>
  2600. </Match>
  2601. <Match>
  2602. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListStyleText"/>
  2603. <Method name="writeListPrefix"/>
  2604. <Bug pattern="DM_NUMBER_CTOR"/>
  2605. </Match>
  2606. <Match>
  2607. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListTable"/>
  2608. <Method name="writeListTableEntry"/>
  2609. <Bug pattern="DM_NUMBER_CTOR"/>
  2610. </Match>
  2611. <Match>
  2612. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListTable"/>
  2613. <Method name="writeRtfContent"/>
  2614. <Bug pattern="DM_NUMBER_CTOR"/>
  2615. </Match>
  2616. <Match>
  2617. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfSpaceSplitter"/>
  2618. <Method name="split"/>
  2619. <Bug pattern="DM_NUMBER_CTOR"/>
  2620. </Match>
  2621. <Match>
  2622. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfStringConverter"/>
  2623. <Method name="&lt;clinit&gt;"/>
  2624. <Bug pattern="DM_NUMBER_CTOR"/>
  2625. </Match>
  2626. <Match>
  2627. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfStringConverter"/>
  2628. <Method name="escape"/>
  2629. <Bug pattern="DM_NUMBER_CTOR"/>
  2630. </Match>
  2631. <Match>
  2632. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfStyleSheetTable"/>
  2633. <Method name="addStyle"/>
  2634. <Bug pattern="DM_NUMBER_CTOR"/>
  2635. </Match>
  2636. <Match>
  2637. <Class name="org.apache.fop.render.rtf.rtflib.tools.PercentContext"/>
  2638. <Method name="findParent"/>
  2639. <Bug pattern="DM_NUMBER_CTOR"/>
  2640. </Match>
  2641. <Match>
  2642. <Class name="org.apache.fop.render.rtf.rtflib.tools.PercentContext"/>
  2643. <Method name="setDimension"/>
  2644. <Bug pattern="DM_NUMBER_CTOR"/>
  2645. </Match>
  2646. <Match>
  2647. <Class name="org.apache.fop.render.rtf.rtflib.tools.PercentContext"/>
  2648. <Method name="setTableUnit"/>
  2649. <Bug pattern="DM_NUMBER_CTOR"/>
  2650. </Match>
  2651. <Match>
  2652. <Class name="org.apache.fop.render.rtf.rtflib.tools.TableContext"/>
  2653. <Method name="decreaseRowSpannings"/>
  2654. <Bug pattern="DM_NUMBER_CTOR"/>
  2655. </Match>
  2656. <Match>
  2657. <Class name="org.apache.fop.render.txt.border.BorderManager"/>
  2658. <Method name="getCharacter"/>
  2659. <Bug pattern="DM_NUMBER_CTOR"/>
  2660. </Match>
  2661. <Match>
  2662. <Class name="org.apache.fop.svg.PDFGraphics2D"/>
  2663. <Method name="drawString"/>
  2664. <Bug pattern="DM_NUMBER_CTOR"/>
  2665. </Match>
  2666. <Match>
  2667. <Class name="org.apache.fop.area.inline.SpaceArea"/>
  2668. <Method name="getSpace"/>
  2669. <Bug pattern="DM_STRING_CTOR"/>
  2670. </Match>
  2671. <Match>
  2672. <Class name="org.apache.fop.hyphenation.TernaryTree$Iterator"/>
  2673. <Method name="nextElement"/>
  2674. <Bug pattern="DM_STRING_CTOR"/>
  2675. </Match>
  2676. <Match>
  2677. <Class name="org.apache.fop.pdf.PDFJavaScriptLaunchAction"/>
  2678. <Method name="contentEquals"/>
  2679. <Bug pattern="DM_STRING_TOSTRING"/>
  2680. </Match>
  2681. <Match>
  2682. <Class name="org.apache.fop.render.awt.viewer.PreviewDialog$ShowStatus"/>
  2683. <Method name="run"/>
  2684. <Bug pattern="DM_STRING_TOSTRING"/>
  2685. </Match>
  2686. <Match>
  2687. <Class name="org.apache.fop.afp.util.StringUtils"/>
  2688. <Method name="lpad"/>
  2689. <Bug pattern="DM_STRING_VOID_CTOR"/>
  2690. </Match>
  2691. <Match>
  2692. <Class name="org.apache.fop.afp.util.StringUtils"/>
  2693. <Method name="rpad"/>
  2694. <Bug pattern="DM_STRING_VOID_CTOR"/>
  2695. </Match>
  2696. <Match>
  2697. <Class name="org.apache.fop.area.inline.SpaceArea"/>
  2698. <Method name="&lt;init&gt;"/>
  2699. <Bug pattern="DM_STRING_VOID_CTOR"/>
  2700. </Match>
  2701. <Match>
  2702. <Class name="org.apache.fop.fonts.substitute.FontQualifier"/>
  2703. <Method name="toString"/>
  2704. <Bug pattern="DM_STRING_VOID_CTOR"/>
  2705. </Match>
  2706. <Match>
  2707. <Class name="org.apache.fop.render.rtf.rtflib.tools.ImageUtil"/>
  2708. <Method name="getInt"/>
  2709. <Bug pattern="DM_STRING_VOID_CTOR"/>
  2710. </Match>
  2711. <Match>
  2712. <Class name="org.apache.fop.area.BookmarkData"/>
  2713. <Method name="getIDRefs"/>
  2714. <Bug pattern="ITA_INEFFICIENT_TO_ARRAY"/>
  2715. </Match>
  2716. <Match>
  2717. <Class name="org.apache.fop.area.PageViewport"/>
  2718. <Method name="getIDRefs"/>
  2719. <Bug pattern="ITA_INEFFICIENT_TO_ARRAY"/>
  2720. </Match>
  2721. <Match>
  2722. <Class name="org.apache.fop.fonts.FontReader"/>
  2723. <Method name="endElement"/>
  2724. <Bug pattern="ITA_INEFFICIENT_TO_ARRAY"/>
  2725. </Match>
  2726. <Match>
  2727. <Class name="org.apache.fop.fonts.apps.AbstractFontReader"/>
  2728. <Method name="parseArguments"/>
  2729. <Bug pattern="ITA_INEFFICIENT_TO_ARRAY"/>
  2730. </Match>
  2731. <Match>
  2732. <Class name="org.apache.fop.fonts.truetype.TTFFile"/>
  2733. <Method name="unicodeToWinAnsi"/>
  2734. <Bug pattern="ITA_INEFFICIENT_TO_ARRAY"/>
  2735. </Match>
  2736. <Match>
  2737. <Class name="org.apache.fop.tools.anttasks.FileCompare"/>
  2738. <Method name="setFilenames"/>
  2739. <Bug pattern="ITA_INEFFICIENT_TO_ARRAY"/>
  2740. </Match>
  2741. <Match>
  2742. <Class name="org.apache.fop.afp.goca.AbstractGraphicsCoord"/>
  2743. <Method name="toString"/>
  2744. <Bug pattern="SBSC_USE_STRINGBUFFER_CONCATENATION"/>
  2745. </Match>
  2746. <Match>
  2747. <Class name="org.apache.fop.afp.fonts.CharacterSetBuilder$FontControl"/>
  2748. <!--Neither method nor field-->
  2749. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2750. </Match>
  2751. <Match>
  2752. <Class name="org.apache.fop.afp.modca.Registry$ObjectType"/>
  2753. <!--Neither method nor field-->
  2754. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2755. </Match>
  2756. <Match>
  2757. <Class name="org.apache.fop.area.LineArea$LineAdjustingInfo"/>
  2758. <!--Neither method nor field-->
  2759. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2760. </Match>
  2761. <Match>
  2762. <Class name="org.apache.fop.fo.FObj$FObjIterator"/>
  2763. <!--Neither method nor field-->
  2764. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2765. </Match>
  2766. <Match>
  2767. <Class name="org.apache.fop.fo.XMLWhiteSpaceHandler$PendingInline"/>
  2768. <!--Neither method nor field-->
  2769. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2770. </Match>
  2771. <Match>
  2772. <Class name="org.apache.fop.fo.extensions.xmp.XMPContentHandlerFactory$FOPXMPHandler"/>
  2773. <!--Neither method nor field-->
  2774. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2775. </Match>
  2776. <Match>
  2777. <Class name="org.apache.fop.fo.flow.Character$FOCharIterator"/>
  2778. <!--Neither method nor field-->
  2779. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2780. </Match>
  2781. <Match>
  2782. <Class name="org.apache.fop.fo.flow.Marker$MarkerPropertyList"/>
  2783. <!--Neither method nor field-->
  2784. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2785. </Match>
  2786. <Match>
  2787. <Class name="org.apache.fop.layoutmgr.BlockContainerLayoutManager$BlockContainerPosition"/>
  2788. <!--Neither method nor field-->
  2789. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2790. </Match>
  2791. <Match>
  2792. <Class name="org.apache.fop.layoutmgr.inline.LeafNodeLayoutManager$AreaInfo"/>
  2793. <!--Neither method nor field-->
  2794. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2795. </Match>
  2796. <Match>
  2797. <Class name="org.apache.fop.layoutmgr.inline.LineLayoutManager$Update"/>
  2798. <!--Neither method nor field-->
  2799. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2800. </Match>
  2801. <Match>
  2802. <Class name="org.apache.fop.layoutmgr.inline.LineLayoutPossibilities$Possibility"/>
  2803. <!--Neither method nor field-->
  2804. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2805. </Match>
  2806. <Match>
  2807. <Class name="org.apache.fop.layoutmgr.inline.TextLayoutManager$AreaInfo"/>
  2808. <!--Neither method nor field-->
  2809. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2810. </Match>
  2811. <Match>
  2812. <Class name="org.apache.fop.layoutmgr.inline.TextLayoutManager$PendingChange"/>
  2813. <!--Neither method nor field-->
  2814. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2815. </Match>
  2816. <Match>
  2817. <Class name="org.apache.fop.layoutmgr.list.ListItemLayoutManager$ListItemPosition"/>
  2818. <!--Neither method nor field-->
  2819. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2820. </Match>
  2821. <Match>
  2822. <Class name="org.apache.fop.pdf.PDFEncoding$DifferencesBuilder"/>
  2823. <!--Neither method nor field-->
  2824. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2825. </Match>
  2826. <Match>
  2827. <Class name="org.apache.fop.pdf.PDFEncryptionJCE$EncryptionFilter"/>
  2828. <!--Neither method nor field-->
  2829. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2830. </Match>
  2831. <Match>
  2832. <Class name="org.apache.fop.render.awt.viewer.PreviewPanel$ViewportScroller"/>
  2833. <!--Neither method nor field-->
  2834. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2835. </Match>
  2836. <Match>
  2837. <Class name="org.apache.fop.render.ps.PSBatikFlowTextElementBridge$PSFlowExtTextPainter"/>
  2838. <!--Neither method nor field-->
  2839. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2840. </Match>
  2841. <Match>
  2842. <Class name="org.apache.fop.render.ps.PSSVGFlowRootElementBridge$PSFlowTextPainter"/>
  2843. <!--Neither method nor field-->
  2844. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2845. </Match>
  2846. <Match>
  2847. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListItem$RtfListItemLabel"/>
  2848. <!--Neither method nor field-->
  2849. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2850. </Match>
  2851. <Match>
  2852. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTextrun$RtfCloseGroupMark"/>
  2853. <!--Neither method nor field-->
  2854. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2855. </Match>
  2856. <Match>
  2857. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTextrun$RtfOpenGroupMark"/>
  2858. <!--Neither method nor field-->
  2859. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2860. </Match>
  2861. <Match>
  2862. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTextrun$RtfParagraphBreak"/>
  2863. <!--Neither method nor field-->
  2864. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2865. </Match>
  2866. <Match>
  2867. <Class name="org.apache.fop.svg.AbstractFOPImageElementBridge$Graphics2DNode"/>
  2868. <!--Neither method nor field-->
  2869. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2870. </Match>
  2871. <Match>
  2872. <Class name="org.apache.fop.util.AbstractPaintingState$StateStack"/>
  2873. <!--Neither method nor field-->
  2874. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
  2875. </Match>
  2876. <Match>
  2877. <Class name="org.apache.fop.afp.AFPResourceManager$1"/>
  2878. <!--Neither method nor field-->
  2879. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2880. </Match>
  2881. <Match>
  2882. <Class name="org.apache.fop.fo.FOTreeBuilder$1"/>
  2883. <!--Neither method nor field-->
  2884. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2885. </Match>
  2886. <Match>
  2887. <Class name="org.apache.fop.fo.extensions.svg.SVGElement$1"/>
  2888. <!--Neither method nor field-->
  2889. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2890. </Match>
  2891. <Match>
  2892. <Class name="org.apache.fop.fo.flow.table.VariableColRowGroupBuilder$1"/>
  2893. <!--Neither method nor field-->
  2894. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2895. </Match>
  2896. <Match>
  2897. <Class name="org.apache.fop.fo.flow.table.VariableColRowGroupBuilder$2"/>
  2898. <!--Neither method nor field-->
  2899. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2900. </Match>
  2901. <Match>
  2902. <Class name="org.apache.fop.fo.flow.table.VariableColRowGroupBuilder$3"/>
  2903. <!--Neither method nor field-->
  2904. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2905. </Match>
  2906. <Match>
  2907. <Class name="org.apache.fop.fo.flow.table.VariableColRowGroupBuilder$4"/>
  2908. <!--Neither method nor field-->
  2909. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2910. </Match>
  2911. <Match>
  2912. <Class name="org.apache.fop.fo.flow.table.VariableColRowGroupBuilder$5"/>
  2913. <!--Neither method nor field-->
  2914. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2915. </Match>
  2916. <Match>
  2917. <Class name="org.apache.fop.fo.flow.table.VariableColRowGroupBuilder$6"/>
  2918. <!--Neither method nor field-->
  2919. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2920. </Match>
  2921. <Match>
  2922. <Class name="org.apache.fop.fo.properties.BackgroundPositionShorthand$Maker$1"/>
  2923. <!--Neither method nor field-->
  2924. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2925. </Match>
  2926. <Match>
  2927. <Class name="org.apache.fop.hyphenation.SerializeHyphPattern$1"/>
  2928. <!--Neither method nor field-->
  2929. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2930. </Match>
  2931. <Match>
  2932. <Class name="org.apache.fop.image.loader.batik.ImageConverterSVG2G2D$1"/>
  2933. <!--Neither method nor field-->
  2934. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2935. </Match>
  2936. <Match>
  2937. <Class name="org.apache.fop.render.ps.PSImageHandlerGraphics2D$1"/>
  2938. <!--Neither method nor field-->
  2939. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2940. </Match>
  2941. <Match>
  2942. <Class name="org.apache.fop.render.ps.ResourceHandler$1"/>
  2943. <!--Neither method nor field-->
  2944. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2945. </Match>
  2946. <Match>
  2947. <Class name="org.apache.fop.svg.PDFTextPainter$1"/>
  2948. <!--Neither method nor field-->
  2949. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2950. </Match>
  2951. <Match>
  2952. <Class name="org.apache.fop.tools.fontlist.FontListMain$1"/>
  2953. <!--Neither method nor field-->
  2954. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
  2955. </Match>
  2956. <Match>
  2957. <Class name="org.apache.fop.fonts.truetype.TTFFile$UnicodeMapping"/>
  2958. <!--Neither method nor field-->
  2959. <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_NEEDS_THIS"/>
  2960. </Match>
  2961. <Match>
  2962. <Class name="org.apache.fop.render.intermediate.IFRenderer$TextUtil"/>
  2963. <Field name="combined"/>
  2964. <Bug pattern="SS_SHOULD_BE_STATIC"/>
  2965. </Match>
  2966. <Match>
  2967. <Class name="org.apache.fop.render.pcl.PCLGenerator"/>
  2968. <Field name="usePCLShades"/>
  2969. <Bug pattern="SS_SHOULD_BE_STATIC"/>
  2970. </Match>
  2971. <Match>
  2972. <Class name="org.apache.fop.render.pcl.PCLGraphics2D"/>
  2973. <Field name="failOnUnsupportedFeature"/>
  2974. <Bug pattern="SS_SHOULD_BE_STATIC"/>
  2975. </Match>
  2976. <Match>
  2977. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfHeader"/>
  2978. <Field name="charset"/>
  2979. <Bug pattern="SS_SHOULD_BE_STATIC"/>
  2980. </Match>
  2981. <Match>
  2982. <Class name="org.apache.fop.render.txt.TXTRenderer"/>
  2983. <Field name="lineEnding"/>
  2984. <Bug pattern="SS_SHOULD_BE_STATIC"/>
  2985. </Match>
  2986. <Match>
  2987. <Class name="org.apache.fop.render.txt.TXTRenderer"/>
  2988. <Field name="pageEnding"/>
  2989. <Bug pattern="SS_SHOULD_BE_STATIC"/>
  2990. </Match>
  2991. <Match>
  2992. <Class name="org.apache.fop.afp.modca.ResourceEnvironmentGroup"/>
  2993. <Method name="getPreprocessPresentationObjects"/>
  2994. <Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/>
  2995. </Match>
  2996. <Match>
  2997. <Class name="org.apache.fop.datatypes.URISpecification"/>
  2998. <Method name="isValidURIChar"/>
  2999. <Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/>
  3000. </Match>
  3001. <Match>
  3002. <Class name="org.apache.fop.fo.expr.PropertyTokenizer"/>
  3003. <Method name="isSpace"/>
  3004. <Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/>
  3005. </Match>
  3006. <Match>
  3007. <Class name="org.apache.fop.fonts.truetype.TTFFile"/>
  3008. <Method name="printMaxMin"/>
  3009. <Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/>
  3010. </Match>
  3011. <Match>
  3012. <Class name="org.apache.fop.fonts.truetype.TTFSubSetFile"/>
  3013. <Method name="writeULong"/>
  3014. <Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/>
  3015. </Match>
  3016. <Match>
  3017. <Class name="org.apache.fop.fonts.truetype.TTFSubSetFile"/>
  3018. <Method name="init"/>
  3019. <Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/>
  3020. </Match>
  3021. <Match>
  3022. <Class name="org.apache.fop.fonts.truetype.TTFSubSetFile"/>
  3023. <Method name="log2"/>
  3024. <Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/>
  3025. </Match>
  3026. <Match>
  3027. <Class name="org.apache.fop.fonts.truetype.TTFSubSetFile"/>
  3028. <Method name="readShort"/>
  3029. <Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/>
  3030. </Match>
  3031. <Match>
  3032. <Class name="org.apache.fop.layoutmgr.inline.AlignmentContext"/>
  3033. <Method name="isHorizontalWritingMode"/>
  3034. <Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/>
  3035. </Match>
  3036. <Match>
  3037. <Class name="org.apache.fop.render.pcl.PCLGenerator"/>
  3038. <Method name="clearBackground"/>
  3039. <Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/>
  3040. </Match>
  3041. <Match>
  3042. <Class name="org.apache.fop.render.pcl.PCLGenerator"/>
  3043. <Method name="getAdjustedDimension"/>
  3044. <Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/>
  3045. </Match>
  3046. <Match>
  3047. <Class name="org.apache.fop.render.pcl.PCLGenerator"/>
  3048. <Method name="getMask"/>
  3049. <Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/>
  3050. </Match>
  3051. <Match>
  3052. <Class name="org.apache.fop.render.ps.ResourceHandler"/>
  3053. <Method name="createMissingForm"/>
  3054. <Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/>
  3055. </Match>
  3056. <Match>
  3057. <Class name="org.apache.fop.afp.AFPGraphicsObjectInfo"/>
  3058. <Field name="area"/>
  3059. <Bug pattern="URF_UNREAD_FIELD"/>
  3060. </Match>
  3061. <Match>
  3062. <Class name="org.apache.fop.fo.pagination.PageNumberGenerator"/>
  3063. <Field name="format"/>
  3064. <Bug pattern="URF_UNREAD_FIELD"/>
  3065. </Match>
  3066. <Match>
  3067. <Class name="org.apache.fop.fo.pagination.PageNumberGenerator"/>
  3068. <Field name="groupingSeparator"/>
  3069. <Bug pattern="URF_UNREAD_FIELD"/>
  3070. </Match>
  3071. <Match>
  3072. <Class name="org.apache.fop.fo.pagination.PageNumberGenerator"/>
  3073. <Field name="groupingSize"/>
  3074. <Bug pattern="URF_UNREAD_FIELD"/>
  3075. </Match>
  3076. <Match>
  3077. <Class name="org.apache.fop.fo.pagination.PageNumberGenerator"/>
  3078. <Field name="letterValue"/>
  3079. <Bug pattern="URF_UNREAD_FIELD"/>
  3080. </Match>
  3081. <Match>
  3082. <Class name="org.apache.fop.fo.pagination.Root"/>
  3083. <Field name="mediaUsage"/>
  3084. <Bug pattern="URF_UNREAD_FIELD"/>
  3085. </Match>
  3086. <Match>
  3087. <Class name="org.apache.fop.fonts.FontReader"/>
  3088. <Field name="cidWidthIndex"/>
  3089. <Bug pattern="URF_UNREAD_FIELD"/>
  3090. </Match>
  3091. <Match>
  3092. <Class name="org.apache.fop.fonts.FontReader"/>
  3093. <Field name="locator"/>
  3094. <Bug pattern="URF_UNREAD_FIELD"/>
  3095. </Match>
  3096. <Match>
  3097. <Class name="org.apache.fop.fonts.base14.Courier"/>
  3098. <Field name="enableKerning"/>
  3099. <Bug pattern="URF_UNREAD_FIELD"/>
  3100. </Match>
  3101. <Match>
  3102. <Class name="org.apache.fop.fonts.base14.CourierBold"/>
  3103. <Field name="enableKerning"/>
  3104. <Bug pattern="URF_UNREAD_FIELD"/>
  3105. </Match>
  3106. <Match>
  3107. <Class name="org.apache.fop.fonts.base14.CourierBoldOblique"/>
  3108. <Field name="enableKerning"/>
  3109. <Bug pattern="URF_UNREAD_FIELD"/>
  3110. </Match>
  3111. <Match>
  3112. <Class name="org.apache.fop.fonts.base14.CourierOblique"/>
  3113. <Field name="enableKerning"/>
  3114. <Bug pattern="URF_UNREAD_FIELD"/>
  3115. </Match>
  3116. <Match>
  3117. <Class name="org.apache.fop.fonts.base14.Symbol"/>
  3118. <Field name="enableKerning"/>
  3119. <Bug pattern="URF_UNREAD_FIELD"/>
  3120. </Match>
  3121. <Match>
  3122. <Class name="org.apache.fop.fonts.base14.ZapfDingbats"/>
  3123. <Field name="enableKerning"/>
  3124. <Bug pattern="URF_UNREAD_FIELD"/>
  3125. </Match>
  3126. <Match>
  3127. <Class name="org.apache.fop.layoutmgr.inline.ICLayoutManager"/>
  3128. <Field name="childrenLM"/>
  3129. <Bug pattern="URF_UNREAD_FIELD"/>
  3130. </Match>
  3131. <Match>
  3132. <Class name="org.apache.fop.pdf.BitmapImage"/>
  3133. <Field name="pdfDoc"/>
  3134. <Bug pattern="URF_UNREAD_FIELD"/>
  3135. </Match>
  3136. <Match>
  3137. <Class name="org.apache.fop.render.java2d.Java2DRenderingContext"/>
  3138. <Field name="fontInfo"/>
  3139. <Bug pattern="URF_UNREAD_FIELD"/>
  3140. </Match>
  3141. <Match>
  3142. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfContainer"/>
  3143. <Field name="lastChild"/>
  3144. <Bug pattern="URF_UNREAD_FIELD"/>
  3145. </Match>
  3146. <Match>
  3147. <Class name="org.apache.fop.render.rtf.rtflib.tools.BuilderContext"/>
  3148. <Field name="options"/>
  3149. <Bug pattern="URF_UNREAD_FIELD"/>
  3150. </Match>
  3151. <Match>
  3152. <Class name="org.apache.fop.render.rtf.rtflib.tools.BuilderContext"/>
  3153. <Field name="builders"/>
  3154. <Bug pattern="URF_UNREAD_FIELD"/>
  3155. </Match>
  3156. <Match>
  3157. <Class name="org.apache.fop.render.rtf.rtflib.tools.TableContext"/>
  3158. <Field name="context"/>
  3159. <Bug pattern="URF_UNREAD_FIELD"/>
  3160. </Match>
  3161. <Match>
  3162. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfPageArea"/>
  3163. <Field name="childAttributes"/>
  3164. <Bug pattern="UUF_UNUSED_FIELD"/>
  3165. </Match>
  3166. <Match>
  3167. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfPageArea"/>
  3168. <Field name="nullChild"/>
  3169. <Bug pattern="UUF_UNUSED_FIELD"/>
  3170. </Match>
  3171. <Match>
  3172. <Class name="org.apache.fop.tools.anttasks.FileCompare"/>
  3173. <Field name="filenames"/>
  3174. <Bug pattern="UUF_UNUSED_FIELD"/>
  3175. </Match>
  3176. <Match>
  3177. <Class name="org.apache.fop.area.PageViewport"/>
  3178. <Method name="addMarkers"/>
  3179. <Bug pattern="WMI_WRONG_MAP_ITERATOR"/>
  3180. </Match>
  3181. <Match>
  3182. <Class name="org.apache.fop.fonts.apps.TTFReader"/>
  3183. <Method name="generateDOM4Kerning"/>
  3184. <Bug pattern="WMI_WRONG_MAP_ITERATOR"/>
  3185. </Match>
  3186. <Match>
  3187. <Class name="org.apache.fop.fonts.truetype.TTFFile"/>
  3188. <Method name="readKerning"/>
  3189. <Bug pattern="WMI_WRONG_MAP_ITERATOR"/>
  3190. </Match>
  3191. <Match>
  3192. <Class name="org.apache.fop.fonts.truetype.TTFSubSetFile"/>
  3193. <Method name="createGlyf"/>
  3194. <Bug pattern="WMI_WRONG_MAP_ITERATOR"/>
  3195. </Match>
  3196. <Match>
  3197. <Class name="org.apache.fop.fonts.truetype.TTFSubSetFile"/>
  3198. <Method name="createHmtx"/>
  3199. <Bug pattern="WMI_WRONG_MAP_ITERATOR"/>
  3200. </Match>
  3201. <Match>
  3202. <Class name="org.apache.fop.fonts.truetype.TTFSubSetFile"/>
  3203. <Method name="scanGlyphs"/>
  3204. <Bug pattern="WMI_WRONG_MAP_ITERATOR"/>
  3205. </Match>
  3206. <Match>
  3207. <Class name="org.apache.fop.pdf.PDFGState"/>
  3208. <Method name="contentEquals"/>
  3209. <Bug pattern="WMI_WRONG_MAP_ITERATOR"/>
  3210. </Match>
  3211. <Match>
  3212. <Class name="org.apache.fop.pdf.PDFResources"/>
  3213. <Method name="addFonts"/>
  3214. <Bug pattern="WMI_WRONG_MAP_ITERATOR"/>
  3215. </Match>
  3216. <Match>
  3217. <Class name="org.apache.fop.render.ps.PSFontUtils"/>
  3218. <Method name="reencodeFonts"/>
  3219. <Bug pattern="WMI_WRONG_MAP_ITERATOR"/>
  3220. </Match>
  3221. <Match>
  3222. <Class name="org.apache.fop.tools.anttasks.RunTest"/>
  3223. <Method name="testNewBuild"/>
  3224. <Bug pattern="WMI_WRONG_MAP_ITERATOR"/>
  3225. </Match>
  3226. <Match>
  3227. <Class name="org.apache.fop.layoutmgr.inline.TextLayoutManager"/>
  3228. <Method name="removeWordSpace"/>
  3229. <Bug pattern="BC_BAD_CAST_TO_CONCRETE_COLLECTION"/>
  3230. </Match>
  3231. <Match>
  3232. <Class name="org.apache.fop.afp.AFPBorderPainter"/>
  3233. <Method name="paint"/>
  3234. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3235. </Match>
  3236. <Match>
  3237. <Class name="org.apache.fop.afp.AFPDitheredRectanglePainter"/>
  3238. <Method name="paint"/>
  3239. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3240. </Match>
  3241. <Match>
  3242. <Class name="org.apache.fop.afp.AFPRectanglePainter"/>
  3243. <Method name="paint"/>
  3244. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3245. </Match>
  3246. <Match>
  3247. <Class name="org.apache.fop.afp.modca.ImageObject"/>
  3248. <Method name="setViewport"/>
  3249. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3250. </Match>
  3251. <Match>
  3252. <Class name="org.apache.fop.fo.XMLWhiteSpaceHandler"/>
  3253. <Method name="handleWhiteSpace"/>
  3254. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3255. </Match>
  3256. <Match>
  3257. <Class name="org.apache.fop.fo.flow.Footnote"/>
  3258. <Method name="addChildNode"/>
  3259. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3260. </Match>
  3261. <Match>
  3262. <Class name="org.apache.fop.fo.flow.Footnote"/>
  3263. <Method name="addChildNode"/>
  3264. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3265. </Match>
  3266. <Match>
  3267. <Class name="org.apache.fop.fo.flow.ListItem"/>
  3268. <Method name="addChildNode"/>
  3269. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3270. </Match>
  3271. <Match>
  3272. <Class name="org.apache.fop.fo.flow.ListItem"/>
  3273. <Method name="addChildNode"/>
  3274. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3275. </Match>
  3276. <Match>
  3277. <Class name="org.apache.fop.fo.flow.ListItem"/>
  3278. <Method name="addChildNode"/>
  3279. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3280. </Match>
  3281. <Match>
  3282. <Class name="org.apache.fop.fo.pagination.Declarations"/>
  3283. <Method name="&lt;init&gt;"/>
  3284. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3285. </Match>
  3286. <Match>
  3287. <Class name="org.apache.fop.fo.pagination.PageSequence"/>
  3288. <Method name="addChildNode"/>
  3289. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3290. </Match>
  3291. <Match>
  3292. <Class name="org.apache.fop.fo.pagination.PageSequence"/>
  3293. <Method name="addChildNode"/>
  3294. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3295. </Match>
  3296. <Match>
  3297. <Class name="org.apache.fop.fo.pagination.PageSequence"/>
  3298. <Method name="addChildNode"/>
  3299. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3300. </Match>
  3301. <Match>
  3302. <Class name="org.apache.fop.fo.properties.CondLengthProperty"/>
  3303. <Method name="setComponent"/>
  3304. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3305. </Match>
  3306. <Match>
  3307. <Class name="org.apache.fop.fo.properties.EnumNumber"/>
  3308. <Method name="getInstance"/>
  3309. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3310. </Match>
  3311. <Match>
  3312. <Class name="org.apache.fop.fo.properties.EnumNumber"/>
  3313. <Method name="&lt;init&gt;"/>
  3314. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3315. </Match>
  3316. <Match>
  3317. <Class name="org.apache.fop.image.loader.batik.ImageConverterG2D2SVG"/>
  3318. <Method name="convert"/>
  3319. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3320. </Match>
  3321. <Match>
  3322. <Class name="org.apache.fop.image.loader.batik.ImageConverterSVG2G2D"/>
  3323. <Method name="convert"/>
  3324. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3325. </Match>
  3326. <Match>
  3327. <Class name="org.apache.fop.image.loader.batik.ImageConverterWMF2G2D"/>
  3328. <Method name="convert"/>
  3329. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3330. </Match>
  3331. <Match>
  3332. <Class name="org.apache.fop.layoutmgr.BlockContainerLayoutManager"/>
  3333. <Method name="addChildArea"/>
  3334. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3335. </Match>
  3336. <Match>
  3337. <Class name="org.apache.fop.layoutmgr.BlockContainerLayoutManager"/>
  3338. <Method name="getNextKnuthElements"/>
  3339. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3340. </Match>
  3341. <Match>
  3342. <Class name="org.apache.fop.layoutmgr.BlockLayoutManager"/>
  3343. <Method name="addChildArea"/>
  3344. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3345. </Match>
  3346. <Match>
  3347. <Class name="org.apache.fop.layoutmgr.BlockStackingLayoutManager"/>
  3348. <Method name="addChildToArea"/>
  3349. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3350. </Match>
  3351. <Match>
  3352. <Class name="org.apache.fop.layoutmgr.BlockStackingLayoutManager"/>
  3353. <Method name="getNextChildElements"/>
  3354. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3355. </Match>
  3356. <Match>
  3357. <Class name="org.apache.fop.layoutmgr.BlockStackingLayoutManager"/>
  3358. <Method name="negotiateBPDAdjustment"/>
  3359. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3360. </Match>
  3361. <Match>
  3362. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$BasicLinkLayoutManagerMaker"/>
  3363. <Method name="make"/>
  3364. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3365. </Match>
  3366. <Match>
  3367. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$BlockContainerLayoutManagerMaker"/>
  3368. <Method name="make"/>
  3369. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3370. </Match>
  3371. <Match>
  3372. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$BlockLayoutManagerMaker"/>
  3373. <Method name="make"/>
  3374. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3375. </Match>
  3376. <Match>
  3377. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$CharacterLayoutManagerMaker"/>
  3378. <Method name="make"/>
  3379. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3380. </Match>
  3381. <Match>
  3382. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$ExternalGraphicLayoutManagerMaker"/>
  3383. <Method name="make"/>
  3384. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3385. </Match>
  3386. <Match>
  3387. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$FOTextLayoutManagerMaker"/>
  3388. <Method name="make"/>
  3389. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3390. </Match>
  3391. <Match>
  3392. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$FootnodeLayoutManagerMaker"/>
  3393. <Method name="make"/>
  3394. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3395. </Match>
  3396. <Match>
  3397. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$InlineContainerLayoutManagerMaker"/>
  3398. <Method name="make"/>
  3399. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3400. </Match>
  3401. <Match>
  3402. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$InlineLayoutManagerMaker"/>
  3403. <Method name="make"/>
  3404. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3405. </Match>
  3406. <Match>
  3407. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$InstreamForeignObjectLayoutManagerMaker"/>
  3408. <Method name="make"/>
  3409. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3410. </Match>
  3411. <Match>
  3412. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$LeaderLayoutManagerMaker"/>
  3413. <Method name="make"/>
  3414. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3415. </Match>
  3416. <Match>
  3417. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$ListBlockLayoutManagerMaker"/>
  3418. <Method name="make"/>
  3419. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3420. </Match>
  3421. <Match>
  3422. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$ListItemLayoutManagerMaker"/>
  3423. <Method name="make"/>
  3424. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3425. </Match>
  3426. <Match>
  3427. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$PageNumberCitationLastLayoutManagerMaker"/>
  3428. <Method name="make"/>
  3429. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3430. </Match>
  3431. <Match>
  3432. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$PageNumberCitationLayoutManagerMaker"/>
  3433. <Method name="make"/>
  3434. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3435. </Match>
  3436. <Match>
  3437. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$PageNumberLayoutManagerMaker"/>
  3438. <Method name="make"/>
  3439. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3440. </Match>
  3441. <Match>
  3442. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$TableLayoutManagerMaker"/>
  3443. <Method name="make"/>
  3444. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3445. </Match>
  3446. <Match>
  3447. <Class name="org.apache.fop.layoutmgr.LayoutManagerMapping$WrapperLayoutManagerMaker"/>
  3448. <Method name="make"/>
  3449. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3450. </Match>
  3451. <Match>
  3452. <Class name="org.apache.fop.layoutmgr.PageBreakingAlgorithm"/>
  3453. <Method name="updateData2"/>
  3454. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3455. </Match>
  3456. <Match>
  3457. <Class name="org.apache.fop.layoutmgr.PageBreakingAlgorithm"/>
  3458. <Method name="computeAdjustmentRatio"/>
  3459. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3460. </Match>
  3461. <Match>
  3462. <Class name="org.apache.fop.layoutmgr.PageBreakingAlgorithm"/>
  3463. <Method name="computeDifference"/>
  3464. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3465. </Match>
  3466. <Match>
  3467. <Class name="org.apache.fop.layoutmgr.StaticContentLayoutManager"/>
  3468. <Method name="addChildArea"/>
  3469. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3470. </Match>
  3471. <Match>
  3472. <Class name="org.apache.fop.layoutmgr.inline.AbstractGraphicsLayoutManager"/>
  3473. <Method name="getBaseLength"/>
  3474. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3475. </Match>
  3476. <Match>
  3477. <Class name="org.apache.fop.layoutmgr.inline.ContentLayoutManager"/>
  3478. <Method name="addChildLM"/>
  3479. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3480. </Match>
  3481. <Match>
  3482. <Class name="org.apache.fop.layoutmgr.inline.LineLayoutManager$LineBreakingAlgorithm"/>
  3483. <Method name="updateData2"/>
  3484. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3485. </Match>
  3486. <Match>
  3487. <Class name="org.apache.fop.layoutmgr.inline.TextLayoutManager"/>
  3488. <Method name="getWordChars"/>
  3489. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3490. </Match>
  3491. <Match>
  3492. <Class name="org.apache.fop.layoutmgr.inline.TextLayoutManager"/>
  3493. <Method name="hyphenate"/>
  3494. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3495. </Match>
  3496. <Match>
  3497. <Class name="org.apache.fop.layoutmgr.list.ListBlockLayoutManager"/>
  3498. <Method name="addChildArea"/>
  3499. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3500. </Match>
  3501. <Match>
  3502. <Class name="org.apache.fop.layoutmgr.list.ListItemContentLayoutManager"/>
  3503. <Method name="addChildArea"/>
  3504. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3505. </Match>
  3506. <Match>
  3507. <Class name="org.apache.fop.layoutmgr.list.ListItemLayoutManager"/>
  3508. <Method name="addChildArea"/>
  3509. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3510. </Match>
  3511. <Match>
  3512. <Class name="org.apache.fop.layoutmgr.table.TableAndCaptionLayoutManager"/>
  3513. <Method name="addChildArea"/>
  3514. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3515. </Match>
  3516. <Match>
  3517. <Class name="org.apache.fop.layoutmgr.table.TableCaptionLayoutManager"/>
  3518. <Method name="addChildArea"/>
  3519. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3520. </Match>
  3521. <Match>
  3522. <Class name="org.apache.fop.layoutmgr.table.TableCellLayoutManager"/>
  3523. <Method name="addChildArea"/>
  3524. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3525. </Match>
  3526. <Match>
  3527. <Class name="org.apache.fop.layoutmgr.table.TableLayoutManager"/>
  3528. <Method name="addChildArea"/>
  3529. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3530. </Match>
  3531. <Match>
  3532. <Class name="org.apache.fop.pdf.PDFFactory"/>
  3533. <Method name="makeFont"/>
  3534. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3535. </Match>
  3536. <Match>
  3537. <Class name="org.apache.fop.pdf.PDFFactory"/>
  3538. <Method name="makeFont"/>
  3539. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3540. </Match>
  3541. <Match>
  3542. <Class name="org.apache.fop.render.afp.AFPDocumentHandler"/>
  3543. <Method name="handleExtensionObject"/>
  3544. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3545. </Match>
  3546. <Match>
  3547. <Class name="org.apache.fop.render.afp.AFPGraphics2DAdapter"/>
  3548. <Method name="paintImage"/>
  3549. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3550. </Match>
  3551. <Match>
  3552. <Class name="org.apache.fop.render.afp.AFPImageHandlerGraphics2D"/>
  3553. <Method name="handleImage"/>
  3554. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3555. </Match>
  3556. <Match>
  3557. <Class name="org.apache.fop.render.afp.AFPImageHandlerGraphics2D"/>
  3558. <Method name="handleImage"/>
  3559. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3560. </Match>
  3561. <Match>
  3562. <Class name="org.apache.fop.render.afp.AFPImageHandlerRawCCITTFax"/>
  3563. <Method name="setAdditionalParameters"/>
  3564. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3565. </Match>
  3566. <Match>
  3567. <Class name="org.apache.fop.render.afp.AFPImageHandlerRawCCITTFax"/>
  3568. <Method name="setAdditionalParameters"/>
  3569. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3570. </Match>
  3571. <Match>
  3572. <Class name="org.apache.fop.render.afp.AFPImageHandlerRenderedImage"/>
  3573. <Method name="handleImage"/>
  3574. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3575. </Match>
  3576. <Match>
  3577. <Class name="org.apache.fop.render.afp.AFPImageHandlerRenderedImage"/>
  3578. <Method name="handleImage"/>
  3579. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3580. </Match>
  3581. <Match>
  3582. <Class name="org.apache.fop.render.afp.AFPImageHandlerSVG"/>
  3583. <Method name="handleImage"/>
  3584. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3585. </Match>
  3586. <Match>
  3587. <Class name="org.apache.fop.render.afp.AFPImageHandlerSVG"/>
  3588. <Method name="handleImage"/>
  3589. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3590. </Match>
  3591. <Match>
  3592. <Class name="org.apache.fop.render.afp.AFPRendererConfigurator"/>
  3593. <Method name="configure"/>
  3594. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3595. </Match>
  3596. <Match>
  3597. <Class name="org.apache.fop.render.afp.AFPSVGHandler"/>
  3598. <Method name="renderSVGDocument"/>
  3599. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3600. </Match>
  3601. <Match>
  3602. <Class name="org.apache.fop.render.afp.AbstractAFPImageHandlerRawStream"/>
  3603. <Method name="handleImage"/>
  3604. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3605. </Match>
  3606. <Match>
  3607. <Class name="org.apache.fop.render.afp.AbstractAFPImageHandlerRawStream"/>
  3608. <Method name="handleImage"/>
  3609. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3610. </Match>
  3611. <Match>
  3612. <Class name="org.apache.fop.render.bitmap.BitmapRendererConfigurator"/>
  3613. <Method name="configure"/>
  3614. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3615. </Match>
  3616. <Match>
  3617. <Class name="org.apache.fop.render.bitmap.TIFFRendererConfigurator"/>
  3618. <Method name="configure"/>
  3619. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3620. </Match>
  3621. <Match>
  3622. <Class name="org.apache.fop.render.bitmap.TIFFRendererConfigurator"/>
  3623. <Method name="configure"/>
  3624. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3625. </Match>
  3626. <Match>
  3627. <Class name="org.apache.fop.render.java2d.Java2DImageHandlerGraphics2D"/>
  3628. <Method name="handleImage"/>
  3629. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3630. </Match>
  3631. <Match>
  3632. <Class name="org.apache.fop.render.java2d.Java2DImageHandlerGraphics2D"/>
  3633. <Method name="handleImage"/>
  3634. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3635. </Match>
  3636. <Match>
  3637. <Class name="org.apache.fop.render.java2d.Java2DImageHandlerRenderedImage"/>
  3638. <Method name="handleImage"/>
  3639. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3640. </Match>
  3641. <Match>
  3642. <Class name="org.apache.fop.render.java2d.Java2DImageHandlerRenderedImage"/>
  3643. <Method name="handleImage"/>
  3644. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3645. </Match>
  3646. <Match>
  3647. <Class name="org.apache.fop.render.java2d.Java2DRenderer"/>
  3648. <Method name="print"/>
  3649. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3650. </Match>
  3651. <Match>
  3652. <Class name="org.apache.fop.render.java2d.Java2DRendererConfigurator"/>
  3653. <Method name="configure"/>
  3654. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3655. </Match>
  3656. <Match>
  3657. <Class name="org.apache.fop.render.pcl.PCLImageHandlerGraphics2D"/>
  3658. <Method name="handleImage"/>
  3659. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3660. </Match>
  3661. <Match>
  3662. <Class name="org.apache.fop.render.pcl.PCLImageHandlerGraphics2D"/>
  3663. <Method name="handleImage"/>
  3664. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3665. </Match>
  3666. <Match>
  3667. <Class name="org.apache.fop.render.pcl.PCLImageHandlerRenderedImage"/>
  3668. <Method name="handleImage"/>
  3669. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3670. </Match>
  3671. <Match>
  3672. <Class name="org.apache.fop.render.pcl.PCLImageHandlerRenderedImage"/>
  3673. <Method name="handleImage"/>
  3674. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3675. </Match>
  3676. <Match>
  3677. <Class name="org.apache.fop.render.pcl.PCLRendererConfigurator"/>
  3678. <Method name="configure"/>
  3679. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3680. </Match>
  3681. <Match>
  3682. <Class name="org.apache.fop.render.pdf.FOToPDFRoleMap$TableCellMapper"/>
  3683. <Method name="getStructureType"/>
  3684. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3685. </Match>
  3686. <Match>
  3687. <Class name="org.apache.fop.render.pdf.PDFDocumentNavigationHandler"/>
  3688. <Method name="addResolvedAction"/>
  3689. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3690. </Match>
  3691. <Match>
  3692. <Class name="org.apache.fop.render.pdf.PDFImageHandlerGraphics2D"/>
  3693. <Method name="handleImage"/>
  3694. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3695. </Match>
  3696. <Match>
  3697. <Class name="org.apache.fop.render.pdf.PDFImageHandlerGraphics2D"/>
  3698. <Method name="handleImage"/>
  3699. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3700. </Match>
  3701. <Match>
  3702. <Class name="org.apache.fop.render.pdf.PDFImageHandlerRawCCITTFax"/>
  3703. <Method name="handleImage"/>
  3704. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3705. </Match>
  3706. <Match>
  3707. <Class name="org.apache.fop.render.pdf.PDFImageHandlerRawCCITTFax"/>
  3708. <Method name="handleImage"/>
  3709. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3710. </Match>
  3711. <Match>
  3712. <Class name="org.apache.fop.render.pdf.PDFImageHandlerRawJPEG"/>
  3713. <Method name="handleImage"/>
  3714. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3715. </Match>
  3716. <Match>
  3717. <Class name="org.apache.fop.render.pdf.PDFImageHandlerRawJPEG"/>
  3718. <Method name="handleImage"/>
  3719. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3720. </Match>
  3721. <Match>
  3722. <Class name="org.apache.fop.render.pdf.PDFImageHandlerRenderedImage"/>
  3723. <Method name="handleImage"/>
  3724. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3725. </Match>
  3726. <Match>
  3727. <Class name="org.apache.fop.render.pdf.PDFImageHandlerRenderedImage"/>
  3728. <Method name="handleImage"/>
  3729. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3730. </Match>
  3731. <Match>
  3732. <Class name="org.apache.fop.render.pdf.PDFImageHandlerSVG"/>
  3733. <Method name="handleImage"/>
  3734. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3735. </Match>
  3736. <Match>
  3737. <Class name="org.apache.fop.render.pdf.PDFImageHandlerSVG"/>
  3738. <Method name="handleImage"/>
  3739. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3740. </Match>
  3741. <Match>
  3742. <Class name="org.apache.fop.render.pdf.PDFRendererConfigurator"/>
  3743. <Method name="configure"/>
  3744. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3745. </Match>
  3746. <Match>
  3747. <Class name="org.apache.fop.render.ps.NativeTextHandler"/>
  3748. <Method name="drawString"/>
  3749. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3750. </Match>
  3751. <Match>
  3752. <Class name="org.apache.fop.render.ps.PSImageHandlerEPS"/>
  3753. <Method name="handleImage"/>
  3754. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3755. </Match>
  3756. <Match>
  3757. <Class name="org.apache.fop.render.ps.PSImageHandlerEPS"/>
  3758. <Method name="handleImage"/>
  3759. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3760. </Match>
  3761. <Match>
  3762. <Class name="org.apache.fop.render.ps.PSImageHandlerGraphics2D"/>
  3763. <Method name="generateForm"/>
  3764. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3765. </Match>
  3766. <Match>
  3767. <Class name="org.apache.fop.render.ps.PSImageHandlerGraphics2D"/>
  3768. <Method name="generateForm"/>
  3769. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3770. </Match>
  3771. <Match>
  3772. <Class name="org.apache.fop.render.ps.PSImageHandlerGraphics2D"/>
  3773. <Method name="handleImage"/>
  3774. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3775. </Match>
  3776. <Match>
  3777. <Class name="org.apache.fop.render.ps.PSImageHandlerGraphics2D"/>
  3778. <Method name="handleImage"/>
  3779. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3780. </Match>
  3781. <Match>
  3782. <Class name="org.apache.fop.render.ps.PSImageHandlerRawCCITTFax"/>
  3783. <Method name="generateForm"/>
  3784. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3785. </Match>
  3786. <Match>
  3787. <Class name="org.apache.fop.render.ps.PSImageHandlerRawCCITTFax"/>
  3788. <Method name="generateForm"/>
  3789. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3790. </Match>
  3791. <Match>
  3792. <Class name="org.apache.fop.render.ps.PSImageHandlerRawCCITTFax"/>
  3793. <Method name="handleImage"/>
  3794. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3795. </Match>
  3796. <Match>
  3797. <Class name="org.apache.fop.render.ps.PSImageHandlerRawCCITTFax"/>
  3798. <Method name="handleImage"/>
  3799. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3800. </Match>
  3801. <Match>
  3802. <Class name="org.apache.fop.render.ps.PSImageHandlerRawJPEG"/>
  3803. <Method name="generateForm"/>
  3804. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3805. </Match>
  3806. <Match>
  3807. <Class name="org.apache.fop.render.ps.PSImageHandlerRawJPEG"/>
  3808. <Method name="generateForm"/>
  3809. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3810. </Match>
  3811. <Match>
  3812. <Class name="org.apache.fop.render.ps.PSImageHandlerRawJPEG"/>
  3813. <Method name="handleImage"/>
  3814. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3815. </Match>
  3816. <Match>
  3817. <Class name="org.apache.fop.render.ps.PSImageHandlerRawJPEG"/>
  3818. <Method name="handleImage"/>
  3819. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3820. </Match>
  3821. <Match>
  3822. <Class name="org.apache.fop.render.ps.PSImageHandlerRenderedImage"/>
  3823. <Method name="generateForm"/>
  3824. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3825. </Match>
  3826. <Match>
  3827. <Class name="org.apache.fop.render.ps.PSImageHandlerRenderedImage"/>
  3828. <Method name="generateForm"/>
  3829. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3830. </Match>
  3831. <Match>
  3832. <Class name="org.apache.fop.render.ps.PSImageHandlerRenderedImage"/>
  3833. <Method name="handleImage"/>
  3834. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3835. </Match>
  3836. <Match>
  3837. <Class name="org.apache.fop.render.ps.PSImageHandlerRenderedImage"/>
  3838. <Method name="handleImage"/>
  3839. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3840. </Match>
  3841. <Match>
  3842. <Class name="org.apache.fop.render.ps.PSImageHandlerSVG"/>
  3843. <Method name="handleImage"/>
  3844. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3845. </Match>
  3846. <Match>
  3847. <Class name="org.apache.fop.render.ps.PSImageHandlerSVG"/>
  3848. <Method name="handleImage"/>
  3849. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3850. </Match>
  3851. <Match>
  3852. <Class name="org.apache.fop.render.ps.PSRendererConfigurator"/>
  3853. <Method name="configure"/>
  3854. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3855. </Match>
  3856. <Match>
  3857. <Class name="org.apache.fop.render.txt.TXTRendererConfigurator"/>
  3858. <Method name="configure"/>
  3859. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3860. </Match>
  3861. <Match>
  3862. <Class name="org.apache.fop.svg.AbstractFOPImageElementBridge"/>
  3863. <Method name="createImageGraphicsNode"/>
  3864. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3865. </Match>
  3866. <Match>
  3867. <Class name="org.apache.fop.svg.PDFAElementBridge"/>
  3868. <Method name="createGraphicsNode"/>
  3869. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  3870. </Match>
  3871. <Match>
  3872. <Class name="org.apache.fop.afp.goca.GraphicsChainedSegment"/>
  3873. <Field name="MAX_DATA_LEN"/>
  3874. <Bug pattern="CI_CONFUSED_INHERITANCE"/>
  3875. </Match>
  3876. <Match>
  3877. <Class name="org.apache.fop.fo.flow.Marker$MarkerAttribute"/>
  3878. <Field name="name"/>
  3879. <Bug pattern="CI_CONFUSED_INHERITANCE"/>
  3880. </Match>
  3881. <Match>
  3882. <Class name="org.apache.fop.fo.flow.Marker$MarkerAttribute"/>
  3883. <Field name="namespace"/>
  3884. <Bug pattern="CI_CONFUSED_INHERITANCE"/>
  3885. </Match>
  3886. <Match>
  3887. <Class name="org.apache.fop.fo.flow.Marker$MarkerAttribute"/>
  3888. <Field name="qname"/>
  3889. <Bug pattern="CI_CONFUSED_INHERITANCE"/>
  3890. </Match>
  3891. <Match>
  3892. <Class name="org.apache.fop.fo.flow.Marker$MarkerAttribute"/>
  3893. <Field name="value"/>
  3894. <Bug pattern="CI_CONFUSED_INHERITANCE"/>
  3895. </Match>
  3896. <Match>
  3897. <Class name="org.apache.fop.fo.properties.ColorProperty"/>
  3898. <Field name="color"/>
  3899. <Bug pattern="CI_CONFUSED_INHERITANCE"/>
  3900. </Match>
  3901. <Match>
  3902. <Class name="org.apache.fop.hyphenation.Hyphenator"/>
  3903. <Field name="log"/>
  3904. <Bug pattern="CI_CONFUSED_INHERITANCE"/>
  3905. </Match>
  3906. <Match>
  3907. <Class name="org.apache.fop.util.ColorUtil"/>
  3908. <Field name="log"/>
  3909. <Bug pattern="CI_CONFUSED_INHERITANCE"/>
  3910. </Match>
  3911. <Match>
  3912. <Class name="org.apache.fop.afp.ioca.ImageOutputControl"/>
  3913. <Method name="writeToStream"/>
  3914. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3915. </Match>
  3916. <Match>
  3917. <Class name="org.apache.fop.afp.ioca.ImageRasterPattern"/>
  3918. <Method name="getRasterData"/>
  3919. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3920. </Match>
  3921. <Match>
  3922. <Class name="org.apache.fop.fo.FOText"/>
  3923. <Method name="isWordChar"/>
  3924. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3925. </Match>
  3926. <Match>
  3927. <Class name="org.apache.fop.fo.FOText"/>
  3928. <Method name="isWordChar"/>
  3929. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3930. </Match>
  3931. <Match>
  3932. <Class name="org.apache.fop.fo.flow.Leader"/>
  3933. <Method name="bind"/>
  3934. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3935. </Match>
  3936. <Match>
  3937. <Class name="org.apache.fop.fo.properties.CommonFont"/>
  3938. <Method name="getFontState"/>
  3939. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3940. </Match>
  3941. <Match>
  3942. <Class name="org.apache.fop.fo.properties.PositionShorthandParser"/>
  3943. <Method name="getValueForProperty"/>
  3944. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3945. </Match>
  3946. <Match>
  3947. <Class name="org.apache.fop.layoutmgr.PageBreakingAlgorithm"/>
  3948. <Method name="considerLegalBreak"/>
  3949. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3950. </Match>
  3951. <Match>
  3952. <Class name="org.apache.fop.layoutmgr.inline.AlignmentContext"/>
  3953. <Method name="&lt;init&gt;"/>
  3954. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3955. </Match>
  3956. <Match>
  3957. <Class name="org.apache.fop.layoutmgr.inline.AlignmentContext"/>
  3958. <Method name="&lt;init&gt;"/>
  3959. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3960. </Match>
  3961. <Match>
  3962. <Class name="org.apache.fop.layoutmgr.inline.TextLayoutManager"/>
  3963. <Method name="getNextKnuthElements"/>
  3964. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3965. </Match>
  3966. <Match>
  3967. <Class name="org.apache.fop.render.pcl.HardcodedFonts"/>
  3968. <Method name="selectFont"/>
  3969. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3970. </Match>
  3971. <Match>
  3972. <Class name="org.apache.fop.render.pcl.PCLGraphics2D"/>
  3973. <Method name="processPathIteratorFill"/>
  3974. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3975. </Match>
  3976. <Match>
  3977. <Class name="org.apache.fop.tools.anttasks.Fop"/>
  3978. <Method name="execute"/>
  3979. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3980. </Match>
  3981. <Match>
  3982. <Class name="org.apache.fop.tools.anttasks.Fop"/>
  3983. <Method name="execute"/>
  3984. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3985. </Match>
  3986. <Match>
  3987. <Class name="org.apache.fop.util.BreakUtil"/>
  3988. <Method name="getBreakClassPriority"/>
  3989. <Bug pattern="DB_DUPLICATE_SWITCH_CLAUSES"/>
  3990. </Match>
  3991. <Match>
  3992. <Class name="org.apache.fop.afp.modca.triplets.AttributeValueTriplet"/>
  3993. <Method name="writeToStream"/>
  3994. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  3995. </Match>
  3996. <Match>
  3997. <Class name="org.apache.fop.fo.XMLWhiteSpaceHandler"/>
  3998. <Method name="handleWhiteSpace"/>
  3999. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4000. </Match>
  4001. <Match>
  4002. <Class name="org.apache.fop.fo.expr.PropertyTokenizer"/>
  4003. <Method name="next"/>
  4004. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4005. </Match>
  4006. <Match>
  4007. <Class name="org.apache.fop.fo.properties.TextDecorationProperty$Maker"/>
  4008. <Method name="convertProperty"/>
  4009. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4010. </Match>
  4011. <Match>
  4012. <Class name="org.apache.fop.fonts.truetype.TTFFile"/>
  4013. <Method name="readFont"/>
  4014. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4015. </Match>
  4016. <Match>
  4017. <Class name="org.apache.fop.fonts.type1.AFMParser$FontBBox"/>
  4018. <Method name="parseBBox"/>
  4019. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4020. </Match>
  4021. <Match>
  4022. <Class name="org.apache.fop.fonts.type1.AFMParser$KPXHandler"/>
  4023. <Method name="parse"/>
  4024. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4025. </Match>
  4026. <Match>
  4027. <Class name="org.apache.fop.fonts.type1.PFMFile"/>
  4028. <Method name="load"/>
  4029. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4030. </Match>
  4031. <Match>
  4032. <Class name="org.apache.fop.hyphenation.HyphenationTree"/>
  4033. <Method name="main"/>
  4034. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4035. </Match>
  4036. <Match>
  4037. <Class name="org.apache.fop.hyphenation.TernaryTree$Iterator"/>
  4038. <Method name="up"/>
  4039. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4040. </Match>
  4041. <Match>
  4042. <Class name="org.apache.fop.layoutmgr.AbstractBreaker"/>
  4043. <Method name="addAreas"/>
  4044. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4045. </Match>
  4046. <Match>
  4047. <Class name="org.apache.fop.layoutmgr.AbstractBreaker"/>
  4048. <Method name="justifyBoxes"/>
  4049. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4050. </Match>
  4051. <Match>
  4052. <Class name="org.apache.fop.layoutmgr.AbstractBreaker"/>
  4053. <Method name="justifyBoxes"/>
  4054. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4055. </Match>
  4056. <Match>
  4057. <Class name="org.apache.fop.layoutmgr.BlockContainerLayoutManager"/>
  4058. <Method name="getNextKnuthElements"/>
  4059. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4060. </Match>
  4061. <Match>
  4062. <Class name="org.apache.fop.layoutmgr.BlockContainerLayoutManager"/>
  4063. <Method name="getNextKnuthElements"/>
  4064. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4065. </Match>
  4066. <Match>
  4067. <Class name="org.apache.fop.layoutmgr.BlockStackingLayoutManager"/>
  4068. <Method name="getNextKnuthElements"/>
  4069. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4070. </Match>
  4071. <Match>
  4072. <Class name="org.apache.fop.layoutmgr.FootnoteBodyLayoutManager"/>
  4073. <Method name="addAreas"/>
  4074. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4075. </Match>
  4076. <Match>
  4077. <Class name="org.apache.fop.layoutmgr.inline.ContentLayoutManager"/>
  4078. <Method name="fillArea"/>
  4079. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4080. </Match>
  4081. <Match>
  4082. <Class name="org.apache.fop.layoutmgr.inline.ContentLayoutManager"/>
  4083. <Method name="fillArea"/>
  4084. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4085. </Match>
  4086. <Match>
  4087. <Class name="org.apache.fop.layoutmgr.inline.LineLayoutManager"/>
  4088. <Method name="findOptimalBreakingPoints"/>
  4089. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4090. </Match>
  4091. <Match>
  4092. <Class name="org.apache.fop.layoutmgr.table.TableCellLayoutManager"/>
  4093. <Method name="getNextKnuthElements"/>
  4094. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4095. </Match>
  4096. <Match>
  4097. <Class name="org.apache.fop.render.AbstractRenderer"/>
  4098. <Method name="renderText"/>
  4099. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4100. </Match>
  4101. <Match>
  4102. <Class name="org.apache.fop.render.awt.viewer.PreviewDialog"/>
  4103. <Method name="&lt;init&gt;"/>
  4104. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4105. </Match>
  4106. <Match>
  4107. <Class name="org.apache.fop.render.awt.viewer.PreviewDialog"/>
  4108. <Method name="showGoToPageDialog"/>
  4109. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4110. </Match>
  4111. <Match>
  4112. <Class name="org.apache.fop.render.pdf.AbstractImageAdapter"/>
  4113. <Method name="setupColorProfile"/>
  4114. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4115. </Match>
  4116. <Match>
  4117. <Class name="org.apache.fop.render.pdf.ImageRawJPEGAdapter"/>
  4118. <Method name="outputContents"/>
  4119. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4120. </Match>
  4121. <Match>
  4122. <Class name="org.apache.fop.render.ps.PSPainter"/>
  4123. <Method name="writeText"/>
  4124. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4125. </Match>
  4126. <Match>
  4127. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfContainer"/>
  4128. <Method name="addChild"/>
  4129. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4130. </Match>
  4131. <Match>
  4132. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfContainer"/>
  4133. <Method name="addChild"/>
  4134. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4135. </Match>
  4136. <Match>
  4137. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfExtraRowSet"/>
  4138. <Method name="writeRow"/>
  4139. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4140. </Match>
  4141. <Match>
  4142. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTableRow"/>
  4143. <Method name="writePaddingAttributes"/>
  4144. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4145. </Match>
  4146. <Match>
  4147. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTextrun"/>
  4148. <Method name="addCloseGroupMark"/>
  4149. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4150. </Match>
  4151. <Match>
  4152. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTextrun"/>
  4153. <Method name="addCloseGroupMark"/>
  4154. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4155. </Match>
  4156. <Match>
  4157. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTextrun"/>
  4158. <Method name="addOpenGroupMark"/>
  4159. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4160. </Match>
  4161. <Match>
  4162. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTextrun"/>
  4163. <Method name="addPageNumber"/>
  4164. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4165. </Match>
  4166. <Match>
  4167. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfTextrun"/>
  4168. <Method name="addPageNumberCitation"/>
  4169. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4170. </Match>
  4171. <Match>
  4172. <Class name="org.apache.fop.svg.PDFANode"/>
  4173. <Method name="paint"/>
  4174. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4175. </Match>
  4176. <Match>
  4177. <Class name="org.apache.fop.svg.PDFGraphics2D"/>
  4178. <Method name="createPattern"/>
  4179. <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
  4180. </Match>
  4181. <Match>
  4182. <Class name="org.apache.fop.pdf.PDFFunction"/>
  4183. <Method name="toPDF"/>
  4184. <Bug pattern="DLS_DEAD_LOCAL_STORE_OF_NULL"/>
  4185. </Match>
  4186. <Match>
  4187. <Class name="org.apache.fop.render.pdf.PDFImageHandlerSVG"/>
  4188. <Method name="handleImage"/>
  4189. <Bug pattern="DLS_DEAD_LOCAL_STORE_OF_NULL"/>
  4190. </Match>
  4191. <Match>
  4192. <Class name="org.apache.fop.render.ps.PSImageHandlerSVG"/>
  4193. <Method name="handleImage"/>
  4194. <Bug pattern="DLS_DEAD_LOCAL_STORE_OF_NULL"/>
  4195. </Match>
  4196. <Match>
  4197. <Class name="org.apache.fop.render.ps.PSSVGHandler"/>
  4198. <Method name="renderSVGDocument"/>
  4199. <Bug pattern="DLS_DEAD_LOCAL_STORE_OF_NULL"/>
  4200. </Match>
  4201. <Match>
  4202. <Class name="org.apache.fop.render.ps.PSImageFormResource"/>
  4203. <!-- Listing the method 'equals' does not work -->
  4204. <Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS"/>
  4205. </Match>
  4206. <Match>
  4207. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfExtraRowSet$PositionedCell"/>
  4208. <Method name="equals"/>
  4209. <Bug pattern="EQ_UNUSUAL"/>
  4210. </Match>
  4211. <Match>
  4212. <Class name="org.apache.fop.fo.properties.NumberProperty"/>
  4213. <Method name="&lt;init&gt;"/>
  4214. <Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
  4215. </Match>
  4216. <Match>
  4217. <Class name="org.apache.fop.image.loader.batik.ImageConverterWMF2G2D$Graphics2DImagePainterWMF"/>
  4218. <Method name="paint"/>
  4219. <Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
  4220. </Match>
  4221. <Match>
  4222. <Class name="org.apache.fop.pdf.PDFColor"/>
  4223. <Method name="contentEquals"/>
  4224. <Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
  4225. </Match>
  4226. <Match>
  4227. <Class name="org.apache.fop.pdf.PDFColor"/>
  4228. <Method name="getColorSpaceOut"/>
  4229. <Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
  4230. </Match>
  4231. <Match>
  4232. <Class name="org.apache.fop.pdf.PDFPaintingState"/>
  4233. <Method name="setCharacterSpacing"/>
  4234. <Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
  4235. </Match>
  4236. <Match>
  4237. <Class name="org.apache.fop.pdf.PDFTextUtil"/>
  4238. <Method name="updateTf"/>
  4239. <Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
  4240. </Match>
  4241. <Match>
  4242. <Class name="org.apache.fop.render.java2d.CustomFontMetricsMapper"/>
  4243. <Method name="getFont"/>
  4244. <Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
  4245. </Match>
  4246. <Match>
  4247. <Class name="org.apache.fop.render.java2d.Java2DFontMetrics"/>
  4248. <Method name="setFont"/>
  4249. <Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
  4250. </Match>
  4251. <Match>
  4252. <Class name="org.apache.fop.render.java2d.Java2DGraphicsState"/>
  4253. <Method name="updateStroke"/>
  4254. <Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
  4255. </Match>
  4256. <Match>
  4257. <Class name="org.apache.fop.render.pcl.PCLGenerator"/>
  4258. <Method name="getAdjustedDimension"/>
  4259. <Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
  4260. </Match>
  4261. <Match>
  4262. <Class name="org.apache.fop.render.pcl.PCLGenerator"/>
  4263. <Method name="paintBitmap"/>
  4264. <Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
  4265. </Match>
  4266. <Match>
  4267. <Class name="org.apache.fop.svg.PDFGraphics2D"/>
  4268. <Method name="updateCurrentFont"/>
  4269. <Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
  4270. </Match>
  4271. <Match>
  4272. <Class name="org.apache.fop.util.AbstractPaintingState"/>
  4273. <Method name="setLineWidth"/>
  4274. <Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
  4275. </Match>
  4276. <Match>
  4277. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfLeader"/>
  4278. <Method name="writeRtfContent"/>
  4279. <Bug pattern="ICAST_IDIV_CAST_TO_DOUBLE"/>
  4280. </Match>
  4281. <Match>
  4282. <Class name="org.apache.fop.fonts.AbstractCodePointMapping"/>
  4283. <Method name="mapChar"/>
  4284. <Bug pattern="IM_AVERAGE_COMPUTATION_COULD_OVERFLOW"/>
  4285. </Match>
  4286. <Match>
  4287. <Class name="org.apache.fop.fo.pagination.AbstractPageSequence"/>
  4288. <Method name="initPageNumber"/>
  4289. <Bug pattern="IM_BAD_CHECK_FOR_ODD"/>
  4290. </Match>
  4291. <Match>
  4292. <Class name="org.apache.fop.fo.pagination.PageSequence"/>
  4293. <Method name="getNextSimplePageMaster"/>
  4294. <Bug pattern="IM_BAD_CHECK_FOR_ODD"/>
  4295. </Match>
  4296. <Match>
  4297. <Class name="org.apache.fop.hyphenation.HyphenationTree"/>
  4298. <Method name="main"/>
  4299. <Bug pattern="NP_IMMEDIATE_DEREFERENCE_OF_READLINE"/>
  4300. </Match>
  4301. <Match>
  4302. <Class name="org.apache.fop.render.afp.AFPRendererConfigurator"/>
  4303. <Method name="buildFontListFromConfiguration"/>
  4304. <Bug pattern="NP_LOAD_OF_KNOWN_NULL_VALUE"/>
  4305. </Match>
  4306. <Match>
  4307. <Class name="org.apache.fop.render.pcl.PCLGenerator"/>
  4308. <Method name="paintBitmap"/>
  4309. <Bug pattern="NP_LOAD_OF_KNOWN_NULL_VALUE"/>
  4310. </Match>
  4311. <Match>
  4312. <Class name="org.apache.fop.render.rtf.RTFHandler"/>
  4313. <Method name="image"/>
  4314. <Bug pattern="NP_LOAD_OF_KNOWN_NULL_VALUE"/>
  4315. </Match>
  4316. <Match>
  4317. <Class name="org.apache.fop.svg.PDFDocumentGraphics2DConfigurator"/>
  4318. <Method name="createFontInfo"/>
  4319. <Bug pattern="NP_LOAD_OF_KNOWN_NULL_VALUE"/>
  4320. </Match>
  4321. <Match>
  4322. <Class name="org.apache.fop.tools.anttasks.FOPTaskStarter"/>
  4323. <Method name="render"/>
  4324. <Bug pattern="NP_LOAD_OF_KNOWN_NULL_VALUE"/>
  4325. </Match>
  4326. <Match>
  4327. <Class name="org.apache.fop.render.awt.viewer.ImageProxyPanel"/>
  4328. <Method name="paintComponent"/>
  4329. <Bug pattern="NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE"/>
  4330. </Match>
  4331. <Match>
  4332. <Class name="org.apache.fop.render.awt.viewer.ImageProxyPanel"/>
  4333. <Method name="paintComponent"/>
  4334. <Bug pattern="NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE"/>
  4335. </Match>
  4336. <Match>
  4337. <Class name="org.apache.fop.layoutmgr.table.TableStepper"/>
  4338. <Method name="considerRowLastStep"/>
  4339. <Bug pattern="NS_DANGEROUS_NON_SHORT_CIRCUIT"/>
  4340. </Match>
  4341. <Match>
  4342. <Class name="org.apache.fop.tools.anttasks.FileCompare"/>
  4343. <Method name="setReferenceDirectory"/>
  4344. <Bug pattern="NS_DANGEROUS_NON_SHORT_CIRCUIT"/>
  4345. </Match>
  4346. <Match>
  4347. <Class name="org.apache.fop.tools.anttasks.FileCompare"/>
  4348. <Method name="setTestDirectory"/>
  4349. <Bug pattern="NS_DANGEROUS_NON_SHORT_CIRCUIT"/>
  4350. </Match>
  4351. <Match>
  4352. <Class name="org.apache.fop.afp.util.AFPResourceUtil"/>
  4353. <Method name="getNext"/>
  4354. <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
  4355. </Match>
  4356. <Match>
  4357. <Class name="org.apache.fop.fo.FOText"/>
  4358. <Method name="getCharArray"/>
  4359. <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
  4360. </Match>
  4361. <Match>
  4362. <Class name="org.apache.fop.fonts.FontCache"/>
  4363. <Method name="getFontInfos"/>
  4364. <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
  4365. </Match>
  4366. <Match>
  4367. <Class name="org.apache.fop.fonts.MultiByteFont"/>
  4368. <Method name="getCharsUsed"/>
  4369. <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
  4370. </Match>
  4371. <Match>
  4372. <Class name="org.apache.fop.fonts.autodetect.FontInfoFinder"/>
  4373. <Method name="find"/>
  4374. <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
  4375. </Match>
  4376. <Match>
  4377. <Class name="org.apache.fop.layoutmgr.table.TableRowIterator"/>
  4378. <Method name="getNextRowGroup"/>
  4379. <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
  4380. </Match>
  4381. <Match>
  4382. <Class name="org.apache.fop.pdf.PDFPattern"/>
  4383. <Method name="toPDF"/>
  4384. <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
  4385. </Match>
  4386. <Match>
  4387. <Class name="org.apache.fop.render.intermediate.AffineTransformArrayParser"/>
  4388. <Method name="getAffineTransforms"/>
  4389. <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
  4390. </Match>
  4391. <Match>
  4392. <Class name="org.apache.fop.svg.AbstractFOPTextPainter"/>
  4393. <Method name="getSelected"/>
  4394. <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
  4395. </Match>
  4396. <Match>
  4397. <Class name="org.apache.fop.svg.NativeTextPainter"/>
  4398. <Method name="findFonts"/>
  4399. <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
  4400. </Match>
  4401. <Match>
  4402. <Class name="org.apache.fop.util.ConversionUtils"/>
  4403. <Method name="toDoubleArray"/>
  4404. <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
  4405. </Match>
  4406. <Match>
  4407. <Class name="org.apache.fop.util.ConversionUtils"/>
  4408. <Method name="toIntArray"/>
  4409. <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
  4410. </Match>
  4411. <Match>
  4412. <Class name="org.apache.fop.util.XMLUtil"/>
  4413. <Method name="getAttributeAsIntArray"/>
  4414. <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
  4415. </Match>
  4416. <Match>
  4417. <Class name="org.apache.fop.afp.modca.MapCodedFont"/>
  4418. <Method name="addFont"/>
  4419. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
  4420. </Match>
  4421. <Match>
  4422. <Class name="org.apache.fop.fonts.FontInfo"/>
  4423. <Method name="fuzzyFontLookup"/>
  4424. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
  4425. </Match>
  4426. <Match>
  4427. <Class name="org.apache.fop.fonts.autodetect.FontInfoFinder"/>
  4428. <Method name="find"/>
  4429. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
  4430. </Match>
  4431. <Match>
  4432. <Class name="org.apache.fop.fonts.substitute.FontQualifier"/>
  4433. <Method name="setFontFamily"/>
  4434. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
  4435. </Match>
  4436. <Match>
  4437. <Class name="org.apache.fop.fonts.substitute.FontSubstitutionsConfigurator"/>
  4438. <Method name="configure"/>
  4439. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
  4440. </Match>
  4441. <Match>
  4442. <Class name="org.apache.fop.pdf.PDFColor"/>
  4443. <Method name="getColorSpaceOut"/>
  4444. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
  4445. </Match>
  4446. <Match>
  4447. <Class name="org.apache.fop.pdf.PDFFactory"/>
  4448. <Method name="makeFontFile"/>
  4449. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
  4450. </Match>
  4451. <Match>
  4452. <Class name="org.apache.fop.render.pcl.PCLPainter"/>
  4453. <Method name="fillRect"/>
  4454. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
  4455. </Match>
  4456. <Match>
  4457. <Class name="org.apache.fop.render.pdf.PDFPainter"/>
  4458. <Method name="fillRect"/>
  4459. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
  4460. </Match>
  4461. <Match>
  4462. <Class name="org.apache.fop.render.ps.PSPainter"/>
  4463. <Method name="fillRect"/>
  4464. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
  4465. </Match>
  4466. <Match>
  4467. <Class name="org.apache.fop.render.ps.PSTextPainter"/>
  4468. <Method name="paintTextRun"/>
  4469. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
  4470. </Match>
  4471. <Match>
  4472. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfElement"/>
  4473. <Method name="toString"/>
  4474. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
  4475. </Match>
  4476. <Match>
  4477. <Class name="org.apache.fop.svg.PDFTextPainter"/>
  4478. <Method name="paintTextRun"/>
  4479. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
  4480. </Match>
  4481. <Match>
  4482. <Class name="org.apache.fop.layoutmgr.BlockContainerLayoutManager"/>
  4483. <Method name="getNextKnuthElements"/>
  4484. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NULL_VALUE"/>
  4485. </Match>
  4486. <Match>
  4487. <Class name="org.apache.fop.render.pcl.PCLGenerator"/>
  4488. <Method name="paintBitmap"/>
  4489. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NULL_VALUE"/>
  4490. </Match>
  4491. <Match>
  4492. <Class name="org.apache.fop.render.pcl.PCLGenerator"/>
  4493. <Method name="paintBitmap"/>
  4494. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NULL_VALUE"/>
  4495. </Match>
  4496. <Match>
  4497. <Class name="org.apache.fop.render.rtf.RTFHandler"/>
  4498. <Method name="image"/>
  4499. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NULL_VALUE"/>
  4500. </Match>
  4501. <Match>
  4502. <Class name="org.apache.fop.accessibility.AccessibilityPreprocessor"/>
  4503. <Method name="endDocument"/>
  4504. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4505. </Match>
  4506. <Match>
  4507. <Class name="org.apache.fop.accessibility.StructureTree"/>
  4508. <Method name="toString"/>
  4509. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4510. </Match>
  4511. <Match>
  4512. <Class name="org.apache.fop.area.CachedRenderPagesModel"/>
  4513. <Method name="checkPreparedPages"/>
  4514. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4515. </Match>
  4516. <Match>
  4517. <Class name="org.apache.fop.cli.CommandLineOptions"/>
  4518. <Method name="parse"/>
  4519. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4520. </Match>
  4521. <Match>
  4522. <Class name="org.apache.fop.cli.InputHandler"/>
  4523. <Method name="transformTo"/>
  4524. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4525. </Match>
  4526. <Match>
  4527. <Class name="org.apache.fop.cli.Main"/>
  4528. <Method name="startFOP"/>
  4529. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4530. </Match>
  4531. <Match>
  4532. <Class name="org.apache.fop.cli.Main"/>
  4533. <Method name="startFOPWithDynamicClasspath"/>
  4534. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4535. </Match>
  4536. <Match>
  4537. <Class name="org.apache.fop.fo.extensions.svg.BatikExtensionElementMapping"/>
  4538. <Method name="getAParserClassName"/>
  4539. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4540. </Match>
  4541. <Match>
  4542. <Class name="org.apache.fop.fo.extensions.svg.SVGDOMContentHandlerFactory$Handler"/>
  4543. <Method name="getDOMImplementation"/>
  4544. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4545. </Match>
  4546. <Match>
  4547. <Class name="org.apache.fop.fo.extensions.svg.SVGElementMapping"/>
  4548. <Method name="getAParserClassName"/>
  4549. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4550. </Match>
  4551. <Match>
  4552. <Class name="org.apache.fop.fonts.apps.PFMReader"/>
  4553. <Method name="main"/>
  4554. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4555. </Match>
  4556. <Match>
  4557. <Class name="org.apache.fop.fonts.apps.TTFReader"/>
  4558. <Method name="main"/>
  4559. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4560. </Match>
  4561. <Match>
  4562. <Class name="org.apache.fop.fonts.autodetect.FontInfoFinder"/>
  4563. <Method name="find"/>
  4564. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4565. </Match>
  4566. <Match>
  4567. <Class name="org.apache.fop.hyphenation.HyphenationTree"/>
  4568. <Method name="main"/>
  4569. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4570. </Match>
  4571. <Match>
  4572. <Class name="org.apache.fop.hyphenation.Hyphenator"/>
  4573. <Method name="getResourceStream"/>
  4574. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4575. </Match>
  4576. <Match>
  4577. <Class name="org.apache.fop.image.loader.batik.PreloaderSVG"/>
  4578. <Method name="getParserName"/>
  4579. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4580. </Match>
  4581. <Match>
  4582. <Class name="org.apache.fop.render.afp.AFPRendererConfigurator"/>
  4583. <Method name="fontFromType"/>
  4584. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4585. </Match>
  4586. <Match>
  4587. <Class name="org.apache.fop.render.java2d.ConfiguredFontCollection"/>
  4588. <Method name="setup"/>
  4589. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4590. </Match>
  4591. <Match>
  4592. <Class name="org.apache.fop.render.rtf.PageAttributesConverter"/>
  4593. <Method name="convertPageAttributes"/>
  4594. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4595. </Match>
  4596. <Match>
  4597. <Class name="org.apache.fop.render.rtf.RTFHandler"/>
  4598. <Method name="leader"/>
  4599. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4600. </Match>
  4601. <Match>
  4602. <Class name="org.apache.fop.render.rtf.RTFHandler"/>
  4603. <Method name="startPageNumberCitation"/>
  4604. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4605. </Match>
  4606. <Match>
  4607. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfExternalGraphic"/>
  4608. <Method name="writeRtfContentWithException"/>
  4609. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4610. </Match>
  4611. <Match>
  4612. <Class name="org.apache.fop.servlet.FopServlet"/>
  4613. <Method name="doGet"/>
  4614. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4615. </Match>
  4616. <Match>
  4617. <Class name="org.apache.fop.svg.AbstractFOPImageElementBridge"/>
  4618. <Method name="createImageGraphicsNode"/>
  4619. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4620. </Match>
  4621. <Match>
  4622. <Class name="org.apache.fop.svg.NativeTextPainter"/>
  4623. <Method name="findFonts"/>
  4624. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4625. </Match>
  4626. <Match>
  4627. <Class name="org.apache.fop.svg.SimpleSVGUserAgent"/>
  4628. <Method name="getXMLParserClassName"/>
  4629. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4630. </Match>
  4631. <Match>
  4632. <Class name="org.apache.fop.tools.TestConverter"/>
  4633. <Method name="runTest"/>
  4634. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4635. </Match>
  4636. <Match>
  4637. <Class name="org.apache.fop.tools.TestConverter"/>
  4638. <Method name="runTests"/>
  4639. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4640. </Match>
  4641. <Match>
  4642. <Class name="org.apache.fop.tools.anttasks.FOPTaskStarter"/>
  4643. <Method name="run"/>
  4644. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4645. </Match>
  4646. <Match>
  4647. <Class name="org.apache.fop.tools.anttasks.RunTest"/>
  4648. <Method name="runConverter"/>
  4649. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4650. </Match>
  4651. <Match>
  4652. <Class name="org.apache.fop.util.ColorSpaceCache"/>
  4653. <Method name="get"/>
  4654. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4655. </Match>
  4656. <Match>
  4657. <Class name="org.apache.fop.util.ColorUtil"/>
  4658. <Method name="parseAsCMYK"/>
  4659. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4660. </Match>
  4661. <Match>
  4662. <Class name="org.apache.fop.util.ColorUtil"/>
  4663. <Method name="parseAsFopRgbIcc"/>
  4664. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4665. </Match>
  4666. <Match>
  4667. <Class name="org.apache.fop.util.ColorUtil"/>
  4668. <Method name="parseWithHash"/>
  4669. <Bug pattern="REC_CATCH_EXCEPTION"/>
  4670. </Match>
  4671. <Match>
  4672. <Class name="org.apache.fop.afp.AFPPaintingState"/>
  4673. <!--Neither method nor field-->
  4674. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4675. </Match>
  4676. <Match>
  4677. <Class name="java.lang.Cloneable"/>
  4678. <!--Neither method nor field-->
  4679. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4680. </Match>
  4681. <Match>
  4682. <Class name="org.apache.fop.afp.modca.AbstractResourceGroupContainer"/>
  4683. <!--Neither method nor field-->
  4684. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4685. </Match>
  4686. <Match>
  4687. <Class name="org.apache.fop.afp.Streamable"/>
  4688. <!--Neither method nor field-->
  4689. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4690. </Match>
  4691. <Match>
  4692. <Class name="org.apache.fop.hyphenation.HyphenationTree"/>
  4693. <!--Neither method nor field-->
  4694. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4695. </Match>
  4696. <Match>
  4697. <Class name="java.io.Serializable"/>
  4698. <!--Neither method nor field-->
  4699. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4700. </Match>
  4701. <Match>
  4702. <Class name="org.apache.fop.layoutmgr.FlowLayoutManager"/>
  4703. <!--Neither method nor field-->
  4704. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4705. </Match>
  4706. <Match>
  4707. <Class name="org.apache.fop.layoutmgr.BlockLevelLayoutManager"/>
  4708. <!--Neither method nor field-->
  4709. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4710. </Match>
  4711. <Match>
  4712. <Class name="org.apache.fop.layoutmgr.table.TableCellLayoutManager"/>
  4713. <!--Neither method nor field-->
  4714. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4715. </Match>
  4716. <Match>
  4717. <Class name="org.apache.fop.layoutmgr.BlockLevelLayoutManager"/>
  4718. <!--Neither method nor field-->
  4719. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4720. </Match>
  4721. <Match>
  4722. <Class name="org.apache.fop.render.afp.AFPRendererConfigurator"/>
  4723. <!--Neither method nor field-->
  4724. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4725. </Match>
  4726. <Match>
  4727. <Class name="org.apache.fop.render.intermediate.IFDocumentHandlerConfigurator"/>
  4728. <!--Neither method nor field-->
  4729. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4730. </Match>
  4731. <Match>
  4732. <Class name="org.apache.fop.render.bitmap.BitmapRendererConfigurator"/>
  4733. <!--Neither method nor field-->
  4734. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4735. </Match>
  4736. <Match>
  4737. <Class name="org.apache.fop.render.intermediate.IFDocumentHandlerConfigurator"/>
  4738. <!--Neither method nor field-->
  4739. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4740. </Match>
  4741. <Match>
  4742. <Class name="org.apache.fop.render.pcl.PCLRendererConfigurator"/>
  4743. <!--Neither method nor field-->
  4744. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4745. </Match>
  4746. <Match>
  4747. <Class name="org.apache.fop.render.intermediate.IFDocumentHandlerConfigurator"/>
  4748. <!--Neither method nor field-->
  4749. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4750. </Match>
  4751. <Match>
  4752. <Class name="org.apache.fop.render.ps.PSRendererConfigurator"/>
  4753. <!--Neither method nor field-->
  4754. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4755. </Match>
  4756. <Match>
  4757. <Class name="org.apache.fop.render.intermediate.IFDocumentHandlerConfigurator"/>
  4758. <!--Neither method nor field-->
  4759. <Bug pattern="RI_REDUNDANT_INTERFACES"/>
  4760. </Match>
  4761. <Match>
  4762. <Class name="org.apache.fop.render.awt.viewer.PreviewPanel$Reloader"/>
  4763. <Method name="run"/>
  4764. <Bug pattern="SF_SWITCH_FALLTHROUGH"/>
  4765. </Match>
  4766. <Match>
  4767. <Class name="org.apache.fop.render.java2d.Java2DBorderPainter"/>
  4768. <Method name="drawLine"/>
  4769. <Bug pattern="SF_SWITCH_FALLTHROUGH"/>
  4770. </Match>
  4771. <Match>
  4772. <Class name="org.apache.fop.render.java2d.Java2DRenderer"/>
  4773. <Method name="renderLeader"/>
  4774. <Bug pattern="SF_SWITCH_FALLTHROUGH"/>
  4775. </Match>
  4776. <Match>
  4777. <Class name="org.apache.fop.util.text.AdvancedMessageFormat"/>
  4778. <Method name="parseInnerPattern"/>
  4779. <Bug pattern="SF_SWITCH_NO_DEFAULT"/>
  4780. </Match>
  4781. <Match>
  4782. <Class name="org.apache.fop.afp.AFPGraphics2D"/>
  4783. <Method name="applyPaint"/>
  4784. <Bug pattern="UCF_USELESS_CONTROL_FLOW"/>
  4785. </Match>
  4786. <Match>
  4787. <Class name="org.apache.fop.fo.properties.PropertyMaker"/>
  4788. <Method name="convertShorthandProperty"/>
  4789. <Bug pattern="UCF_USELESS_CONTROL_FLOW"/>
  4790. </Match>
  4791. <Match>
  4792. <Class name="org.apache.fop.layoutmgr.AbstractBreaker"/>
  4793. <Method name="justifyBoxes"/>
  4794. <Bug pattern="UCF_USELESS_CONTROL_FLOW"/>
  4795. </Match>
  4796. <Match>
  4797. <Class name="org.apache.fop.layoutmgr.AbstractPageSequenceLayoutManager"/>
  4798. <Method name="doForcePageCount"/>
  4799. <Bug pattern="UCF_USELESS_CONTROL_FLOW"/>
  4800. </Match>
  4801. <Match>
  4802. <Class name="org.apache.fop.layoutmgr.BlockStackingLayoutManager"/>
  4803. <Method name="addChildToArea"/>
  4804. <Bug pattern="UCF_USELESS_CONTROL_FLOW"/>
  4805. </Match>
  4806. <Match>
  4807. <Class name="org.apache.fop.layoutmgr.table.CollapsingBorderModel"/>
  4808. <Method name="getBorderModelFor"/>
  4809. <Bug pattern="UCF_USELESS_CONTROL_FLOW"/>
  4810. </Match>
  4811. <Match>
  4812. <Class name="org.apache.fop.render.intermediate.IFRenderer"/>
  4813. <Method name="getGoToActionForID"/>
  4814. <Bug pattern="UCF_USELESS_CONTROL_FLOW"/>
  4815. </Match>
  4816. <Match>
  4817. <Class name="org.apache.fop.render.ps.PSDocumentHandler"/>
  4818. <Method name="startPage"/>
  4819. <Bug pattern="UCF_USELESS_CONTROL_FLOW"/>
  4820. </Match>
  4821. <Match>
  4822. <Class name="org.apache.fop.render.rtf.TextAttributesConverter"/>
  4823. <Method name="convertLeaderAttributes"/>
  4824. <Bug pattern="UCF_USELESS_CONTROL_FLOW"/>
  4825. </Match>
  4826. <Match>
  4827. <Class name="org.apache.fop.tools.TestConverter"/>
  4828. <Method name="runTestCase"/>
  4829. <Bug pattern="UCF_USELESS_CONTROL_FLOW"/>
  4830. </Match>
  4831. <Match>
  4832. <Class name="org.apache.fop.fo.extensions.xmp.AbstractMetadataElement"/>
  4833. <Field name="attachment"/>
  4834. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4835. </Match>
  4836. <Match>
  4837. <Class name="org.apache.fop.fo.flow.AbstractGraphics"/>
  4838. <Field name="alignmentAdjust"/>
  4839. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4840. </Match>
  4841. <Match>
  4842. <Class name="org.apache.fop.fo.pagination.AbstractPageSequence"/>
  4843. <Field name="pageNumberGenerator"/>
  4844. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4845. </Match>
  4846. <Match>
  4847. <Class name="org.apache.fop.fo.pagination.AbstractPageSequence"/>
  4848. <Field name="referenceOrientation"/>
  4849. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4850. </Match>
  4851. <Match>
  4852. <Class name="org.apache.fop.fo.pagination.LayoutMasterSet"/>
  4853. <Field name="pageSequenceMasters"/>
  4854. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4855. </Match>
  4856. <Match>
  4857. <Class name="org.apache.fop.fo.pagination.LayoutMasterSet"/>
  4858. <Field name="simplePageMasters"/>
  4859. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4860. </Match>
  4861. <Match>
  4862. <Class name="org.apache.fop.fo.pagination.PageSequence"/>
  4863. <Field name="flowMap"/>
  4864. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4865. </Match>
  4866. <Match>
  4867. <Class name="org.apache.fop.fo.pagination.PageSequenceMaster"/>
  4868. <Field name="layoutMasterSet"/>
  4869. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4870. </Match>
  4871. <Match>
  4872. <Class name="org.apache.fop.fo.pagination.PageSequenceMaster"/>
  4873. <Field name="subSequenceSpecifiers"/>
  4874. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4875. </Match>
  4876. <Match>
  4877. <Class name="org.apache.fop.fo.pagination.Region"/>
  4878. <Field name="referenceOrientation"/>
  4879. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4880. </Match>
  4881. <Match>
  4882. <Class name="org.apache.fop.fo.pagination.RegionBody"/>
  4883. <Field name="columnCount"/>
  4884. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4885. </Match>
  4886. <Match>
  4887. <Class name="org.apache.fop.fo.pagination.RegionBody"/>
  4888. <Field name="columnGap"/>
  4889. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4890. </Match>
  4891. <Match>
  4892. <Class name="org.apache.fop.fo.pagination.RegionBody"/>
  4893. <Field name="commonMarginBlock"/>
  4894. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4895. </Match>
  4896. <Match>
  4897. <Class name="org.apache.fop.fo.pagination.RepeatablePageMasterReference"/>
  4898. <Field name="maximumRepeats"/>
  4899. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4900. </Match>
  4901. <Match>
  4902. <Class name="org.apache.fop.fo.pagination.SimplePageMaster"/>
  4903. <Field name="referenceOrientation"/>
  4904. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4905. </Match>
  4906. <Match>
  4907. <Class name="org.apache.fop.fo.pagination.SimplePageMaster"/>
  4908. <Field name="regions"/>
  4909. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4910. </Match>
  4911. <Match>
  4912. <Class name="org.apache.fop.fo.properties.SpaceProperty"/>
  4913. <Field name="conditionality"/>
  4914. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4915. </Match>
  4916. <Match>
  4917. <Class name="org.apache.fop.fo.properties.SpaceProperty"/>
  4918. <Field name="precedence"/>
  4919. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4920. </Match>
  4921. <Match>
  4922. <Class name="org.apache.fop.fonts.type1.AFMFile"/>
  4923. <Field name="kerningMap"/>
  4924. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4925. </Match>
  4926. <Match>
  4927. <Class name="org.apache.fop.fonts.type1.PFBData"/>
  4928. <Field name="encryptedSegment"/>
  4929. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4930. </Match>
  4931. <Match>
  4932. <Class name="org.apache.fop.fonts.type1.PFBData"/>
  4933. <Field name="headerSegment"/>
  4934. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4935. </Match>
  4936. <Match>
  4937. <Class name="org.apache.fop.fonts.type1.PFBData"/>
  4938. <Field name="trailerSegment"/>
  4939. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4940. </Match>
  4941. <Match>
  4942. <Class name="org.apache.fop.hyphenation.HyphenationTree"/>
  4943. <Field name="ivalues"/>
  4944. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4945. </Match>
  4946. <Match>
  4947. <Class name="org.apache.fop.layoutmgr.BlockContainerLayoutManager$BlockContainerBreaker"/>
  4948. <Field name="deferredAlg"/>
  4949. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4950. </Match>
  4951. <Match>
  4952. <Class name="org.apache.fop.layoutmgr.inline.LineLayoutManager$Paragraph"/>
  4953. <Field name="lineFiller"/>
  4954. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4955. </Match>
  4956. <Match>
  4957. <Class name="org.apache.fop.pdf.PDFLink"/>
  4958. <Field name="action"/>
  4959. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4960. </Match>
  4961. <Match>
  4962. <Class name="org.apache.fop.pdf.PDFT1Stream"/>
  4963. <Field name="pfb"/>
  4964. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4965. </Match>
  4966. <Match>
  4967. <Class name="org.apache.fop.pdf.PDFTextUtil"/>
  4968. <Field name="bufTJ"/>
  4969. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4970. </Match>
  4971. <Match>
  4972. <Class name="org.apache.fop.render.AbstractRenderingContext"/>
  4973. <Field name="hints"/>
  4974. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4975. </Match>
  4976. <Match>
  4977. <Class name="org.apache.fop.render.afp.AFPDocumentHandler"/>
  4978. <Field name="dataStream"/>
  4979. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4980. </Match>
  4981. <Match>
  4982. <Class name="org.apache.fop.render.bitmap.PNGRenderer"/>
  4983. <Field name="multiFileUtil"/>
  4984. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4985. </Match>
  4986. <Match>
  4987. <Class name="org.apache.fop.render.bitmap.TIFFRenderer"/>
  4988. <Field name="outputStream"/>
  4989. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4990. </Match>
  4991. <Match>
  4992. <Class name="org.apache.fop.render.intermediate.AffineTransformArrayParser"/>
  4993. <Field name="transforms"/>
  4994. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  4995. </Match>
  4996. <Match>
  4997. <Class name="org.apache.fop.render.ps.PSTextPainter$TextUtil"/>
  4998. <Field name="fonts"/>
  4999. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5000. </Match>
  5001. <Match>
  5002. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfExternalGraphic"/>
  5003. <Field name="imageformat"/>
  5004. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5005. </Match>
  5006. <Match>
  5007. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfFile"/>
  5008. <Field name="listTableContainer"/>
  5009. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5010. </Match>
  5011. <Match>
  5012. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfListStyle"/>
  5013. <Field name="rtfListItem"/>
  5014. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5015. </Match>
  5016. <Match>
  5017. <Class name="org.apache.fop.render.rtf.rtflib.rtfdoc.RtfParagraph"/>
  5018. <Field name="text"/>
  5019. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5020. </Match>
  5021. <Match>
  5022. <Class name="org.apache.fop.render.txt.TXTRenderer"/>
  5023. <Field name="bm"/>
  5024. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5025. </Match>
  5026. <Match>
  5027. <Class name="org.apache.fop.render.txt.TXTRenderer"/>
  5028. <Field name="charData"/>
  5029. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5030. </Match>
  5031. <Match>
  5032. <Class name="org.apache.fop.render.txt.TXTRenderer"/>
  5033. <Field name="currentStream"/>
  5034. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5035. </Match>
  5036. <Match>
  5037. <Class name="org.apache.fop.render.txt.TXTRenderer"/>
  5038. <Field name="decoData"/>
  5039. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5040. </Match>
  5041. <Match>
  5042. <Class name="org.apache.fop.render.txt.TXTRenderer"/>
  5043. <Field name="outputStream"/>
  5044. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5045. </Match>
  5046. <Match>
  5047. <Class name="org.apache.fop.svg.PDFANode"/>
  5048. <Field name="destination"/>
  5049. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5050. </Match>
  5051. <Match>
  5052. <Class name="org.apache.fop.svg.PDFANode"/>
  5053. <Field name="transform"/>
  5054. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5055. </Match>
  5056. <Match>
  5057. <Class name="org.apache.fop.svg.PDFTextUtil"/>
  5058. <Field name="font"/>
  5059. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5060. </Match>
  5061. <Match>
  5062. <Class name="org.apache.fop.svg.PDFTextUtil"/>
  5063. <Field name="fonts"/>
  5064. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5065. </Match>
  5066. <Match>
  5067. <Class name="org.apache.fop.tools.anttasks.FileCompare"/>
  5068. <Field name="filenameList"/>
  5069. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5070. </Match>
  5071. <Match>
  5072. <Class name="org.apache.fop.util.ColorExt"/>
  5073. <Field name="colorValues"/>
  5074. <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
  5075. </Match>
  5076. <!-- /Automatically generated list of exclusions -->
  5077. <!-- Automatically generated list of exclusions on 18 February 2011 -->
  5078. <Match>
  5079. <Class name="org.apache.fop.afp.goca.GraphicsSetProcessColor"/>
  5080. <Method name="writeToStream"/>
  5081. <Bug pattern="OS_OPEN_STREAM"/>
  5082. </Match>
  5083. <Match>
  5084. <Class name="org.apache.fop.pdf.PDFFactory"/>
  5085. <Method name="makeSeparationColorSpace"/>
  5086. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  5087. </Match>
  5088. <Match>
  5089. <Class name="org.apache.fop.pdf.PDFFactory"/>
  5090. <Method name="toColorVector"/>
  5091. <Bug pattern="DM_FP_NUMBER_CTOR"/>
  5092. </Match>
  5093. <Match>
  5094. <Class name="org.apache.fop.fo.expr.PropertyTokenizer"/>
  5095. <Field name="recognizeOperator"/>
  5096. <Bug pattern="URF_UNREAD_FIELD"/>
  5097. </Match>
  5098. <Match>
  5099. <Class name="org.apache.fop.layoutmgr.BlockLayoutManager"/>
  5100. <Method name="getNextChildElements"/>
  5101. <Bug pattern="BC_UNCONFIRMED_CAST"/>
  5102. </Match>
  5103. <Match>
  5104. <Class name="org.apache.fop.util.ColorWithFallback"/>
  5105. <!-- Listing the method 'equals' does not work -->
  5106. <Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS"/>
  5107. </Match>
  5108. <Match>
  5109. <Class name="org.apache.fop.util.ColorWithFallback"/>
  5110. <Method name="getAlternativeColors"/>
  5111. <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
  5112. </Match>
  5113. <Match>
  5114. <Class name="org.apache.fop.fo.expr.NamedColorFunction"/>
  5115. <Method name="eval"/>
  5116. <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
  5117. </Match>
  5118. <Match>
  5119. <Class name="org.apache.fop.util.ColorUtil"/>
  5120. <Method name="parseAsFopRgbNamedColor"/>
  5121. <Bug pattern="REC_CATCH_EXCEPTION"/>
  5122. </Match>
  5123. <!-- /Automatically generated list of exclusions on 18 February 2011 -->
  5124. </FindBugsFilter>