1 19 20 28 29 package org.netbeans.modules.xml.schema.refactoring.query; 30 31 import org.netbeans.modules.xml.nbprefuse.AnalysisViewer; 32 import org.netbeans.modules.xml.schema.model.SchemaModel; 33 import org.netbeans.modules.xml.schema.refactoring.ui.QueryPanel; 34 35 36 40 public interface Query { 41 42 43 47 public void setDisplayName(String displayName); 48 49 50 54 56 60 public String getShortName(); 61 62 66 public void setShortName(String shortName); 67 68 70 public void runQuery(final QueryPanel queryPanel, 71 final AnalysisViewer analysisViewer); 72 73 76 public SchemaModel getModel(); 77 78 80 } 82 | Popular Tags |