1 19 package org.netbeans.modules.xml.schema.completion.spi; 20 21 import java.util.List ; 22 import org.netbeans.modules.xml.schema.model.SchemaModel; 23 24 38 public abstract class CompletionModelProvider { 39 40 45 public abstract List <CompletionModel> getModels(CompletionContext context); 46 47 50 public static abstract class CompletionModel { 51 52 55 public abstract String getSuggestedPrefix(); 56 57 60 public abstract String getTargetNamespace(); 61 62 65 public abstract SchemaModel getSchemaModel(); 66 } 67 68 } 69 | Popular Tags |