(String namespace, String name)
| 591 | // //// Persistence handling ////// |
| 592 | |
| 593 | public void unpersist(String namespace, String name) throws DDFException { |
| 594 | this.getDummyDDF().getPersistenceHandler().unpersist(namespace, name); |
| 595 | } |
| 596 | |
| 597 | public static IPersistible doLoad(String uri) throws DDFException { |
| 598 | return doLoad(new PersistenceUri(uri)); |
nothing calls this directly
no test coverage detected