- 更新日時:
- 2010/05/11 23:38:14 (2 年 前)
- パス:
- plugins/ExamplePlugin
- ファイル:
-
- 2 変更
-
. (変更) (1 prop)
-
src/org/rayflood/mikuvat/plugin/ExamplePlugin.java (変更) (4 diff)
凡例:
- 変更なし
- 追加
- 削除
-
plugins/ExamplePlugin
-
svn:ignore 属性が
classes
doc
に 設定されました。
-
svn:ignore 属性が
-
plugins/ExamplePlugin/src/org/rayflood/mikuvat/plugin/ExamplePlugin.java
r3 r7 7 7 8 8 import org.rayflood.mikuvat.gui.MikuvatFrame; 9 import org.rayflood.mikuvat.io. VSQFile;9 import org.rayflood.mikuvat.io.vsq.VSQFile; 10 10 11 11 public class ExamplePlugin implements PluginInterface{ … … 31 31 System.out.println(getPluginDescription()); 32 32 try{ 33 this.vsq = new VSQFile(args[1]);33 vsq = new VSQFile(args[1]); 34 34 System.out.println(getVSQText()); 35 35 } … … 50 50 try{ 51 51 List<List<String>> vsqtext = vsq.getVSQText(); 52 //List<List<String>> vsqtext = ((VSQFile)new VSQFile().cover(vsq)).getVSQText(); 53 //List<List<String>> vsqtext = ((VSQFile)VSQFile.getDefault().heap(vsq)).getVSQText(); 54 //List<List<String>> vsqtext = ((VSQFile)new VSQFile().lay(vsq)).getVSQText(); 52 // List<List<String>> vsqtext = ((VSQFile)new VSQFile().cover(vsq)).getVSQText(); 53 // List<List<String>> vsqtext = ((VSQFile)VSQFile.getDefault().heap(vsq)).getVSQText(); 54 // List<List<String>> vsqtext = ((VSQFile)new VSQFile().lay(vsq)).getVSQText(); 55 vsq.writeVSQFile("test.vsq"); 55 56 for(int i = 0; i < vsqtext.size(); i++){ 56 57 List<String> section = vsqtext.get(i); … … 64 65 } 65 66 return sb.toString(); 67 // return vsq.toString(); 66 68 } 67 69 }
