Inserts a prerequisite that the specified name exists; that is, there exist records with the given name in the zone.
(Name name)
| 58 | * exist records with the given name in the zone. |
| 59 | */ |
| 60 | public void |
| 61 | present(Name name) { |
| 62 | newPrereq(Record.newRecord(name, Type.ANY, DClass.ANY, 0)); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Inserts a prerequisite that the specified rrset exists; that is, there |
nothing calls this directly
no test coverage detected