チェンジセット 44 : BH13SPARQLBuilder/src/hozo/sparql
- 更新日時:
- 2014/01/31 13:41:34 (11 年 前)
- ファイル:
-
- 1 変更
凡例:
- 変更なし
- 追加
- 削除
-
BH13SPARQLBuilder/src/hozo/sparql/gui/SparqlBuilderPanel.java
r40 r44 119 119 jtf_start_class = new JTextField(40); 120 120 //jtf_start_class.setText("http://dbpedia.org/ontology/Artist"); 121 jtf_start_class.setText("http://purl.jp/bio/10/lsd/ontology/201209#EnglishCode"); 121 //jtf_start_class.setText("http://purl.jp/bio/10/lsd/ontology/201209#EnglishCode"); 122 jtf_start_class.setText("http://purl.org/allie/ontology/201108#ShortForm"); 122 123 jp1.add(new JLabel("Start Class:"),BorderLayout.WEST); 123 124 jp1.add(jtf_start_class,BorderLayout.CENTER); … … 141 142 jtf_end_class = new JTextField(40); 142 143 //jtf_end_class.setText("http://dbpedia.org/ontology/Award"); 143 jtf_end_class.setText("http://purl.jp/bio/10/lsd/ontology/201209#JapaneseEntry"); 144 144 //jtf_end_class.setText("http://purl.jp/bio/10/lsd/ontology/201209#JapaneseEntry"); 145 jtf_end_class.setText("http://purl.org/allie/ontology/201108#LongForm"); 146 145 147 jp2.add(new JLabel("End Class:"),BorderLayout.WEST); 146 148 jp2.add(jtf_end_class,BorderLayout.CENTER); … … 198 200 Path[] path = getOWLQueryBuilderImpl().getPaths( 199 201 jtf_start_class.getText(), jtf_end_class.getText(), 200 mode, count_ins);202 mode, !count_ins); 201 203 System.out.println("RESULT:::>>>>"+path.length); 202 204 … … 235 237 for(int i=0;i<classes.length;i++){ 236 238 model.addElement(classes[i].getClassURI()); 239 System.out.println("..."+classes[i].getClassURI()); 237 240 } 238 241 JList list = new JList(model); … … 240 243 JScrollPane listScrollPane = new JScrollPane(list); 241 244 242 Object[] msg ={"Select a Class:",listScrollPane}; 245 Object[] msg ={ 246 "Select a Class:",listScrollPane}; 243 247 244 248 … … 418 422 419 423 } 424 425 class classSelectDialog extends JDialog{ 426 427 classSelectDialog(){ 428 super(); 429 this.setVisible(true); 430 431 } 432 433 434 435 }