502503504505506507508509510511
Element e = this.getChildElementLocalName(i, Constants.SignatureSpecNS, Constants._TAG_PGPDATA); if (e != null) { return new PGPData(e, this._baseURI); } else { return null; } }
560561562563564565566567568
Element e = XMLUtils.selectDsNode( this.constructionElement.getFirstChild(), Constants._TAG_PGPDATA, i); if (e != null) { return new PGPData(e, this.baseURI); } return null; }
494495496497498499500501502
Element e = XMLUtils.selectDsNode(this._constructionElement.getFirstChild(), Constants._TAG_PGPDATA,i); if (e != null) { return new PGPData(e, this._baseURI); } return null; }
557558559560561562563564565
Element e = XMLUtils.selectDsNode( getFirstChild(), Constants._TAG_PGPDATA, i); if (e != null) { return new PGPData(e, this.baseURI); } return null; }