1 19 package org.netbeans.modules.j2ee.dd.impl.common; 20 21 import org.openide.filesystems.FileLock; 22 import org.netbeans.modules.j2ee.dd.api.common.RootInterface; 23 24 import java.io.IOException ; 25 import java.io.Reader ; 26 27 30 public interface DDProviderDataObject { 31 36 Reader createReader() throws IOException ; 37 38 42 FileLock getDataLock(); 43 44 49 void writeModel(RootInterface model, FileLock dataLock); 50 51 56 void writeModel(RootInterface model) throws IOException ; 57 } 58 | Popular Tags |