*
* @return The appearance stream resources.
*/
public PDResources getResources()
{
PDResources retval = null;
COSDictionary dict = (COSDictionary)stream.getDictionaryObject( COSName.RESOURCES );
if( dict != null )
{
retval = new PDResources( dict );
}
return retval;
}