*
* @return The structure element of this node.
*/
public PDStructureElement getStructureElement()
{
PDStructureElement se = null;
COSDictionary dic = (COSDictionary)node.getDictionaryObject( "SE" );
if( dic != null )
{
se = new PDStructureElement( dic );
}
return se;
}