1 19 20 28 29 package org.netbeans.modules.xml.wsdl.ui; 30 31 import org.netbeans.modules.xml.wsdl.ui.extensibility.model.ModelSourceProvider; 32 import org.netbeans.modules.xml.xam.ModelSource; 33 import org.netbeans.modules.xml.xam.locator.CatalogModelException; 34 import org.openide.filesystems.FileObject; 35 36 40 public class TestModelSourceProvider implements ModelSourceProvider { 41 42 43 public TestModelSourceProvider() { 44 } 45 46 public ModelSource getModelSource(FileObject file, boolean editable) throws CatalogModelException { 47 return TestUtil.createModelSource(file, editable); 49 } 50 51 } 52 | Popular Tags |