在JBuilder5中增加註釋與反註釋工具 (轉)

worldblog發表於2007-12-09
在JBuilder5中增加註釋與反註釋工具 (轉)[@more@]

看了levin_zhang寫的註釋與反註釋Comment/Uncomment ed code in Visual C++ 文章, 也想到在JBuilder5中沒有這樣的功能, 於是也寫了一個Comment/Uncomment工具.

JBuilder5提供了一個Open Tools開發工具給使用者來增強JBuilder5的功能。更多的這樣的Open tools工具請看  的community中的code contral.

實現comment/uncomment的功能程式碼如下:

  private boolean CreateComment()
  {
  String selection = target.getSelectedText();
  String newSelection;
  if ( (selection.trim().startsWith("/*") && selection.trim().endsWith("*/")))
  {
  StringBuffer sb = new StringBuffer(selection);
  newSelection = sb.substring(2,selection.length()-2);
  }else
  {
  newSelection = "/*" + selection + "*/";
  }
  target.replaceSelection(newSelection);
  return true;

  }

感謝">Christopher Fitch,  我的這個程式參考了他的DocCreator.

這個工具的名字是JavaCommentCreator.jar,使用時將其放到jbuilder5/lib/ext/目錄中,重新啟動jbuilder即可.

使用方法,選取一段文字,點右鍵出現選單,選 Comment/Uncomment Selection即可。在所選 文字的兩端加上的/*和*/, Uncomment時從/*選到*/再點Comment/Uncomment Selection選單即可.

地址:

?id=856">


 


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-990271/,如需轉載,請註明出處,否則將追究法律責任。

相關文章