414415416417418419420421
/** * @return true if this message requires authorization. */ public boolean hasAuth() { Authorize auth = getAuth(); return auth != null && auth.hasAuth(); }
431432433434435436437438439
p.check(); for (Thrown n: thrown) n.check(); Authorize auth = getAuth(); if (auth != null) auth.check( parent(), this ); }