質問内容
質問を評価する
(0ポイント)
|
eclipse 3.2.0 です
例えば、java.sql.Driver を実装した時に、自動生成で、
public Connection connect( String arg0,Properties arg1 )throws SQLException { return null; }
となるのを、
public Connection connect( String url, Properties info )throws SQLException { return null; }
と、変数名が入ったようにしたいのですが‥ 自分で、テンプレートを作るしかないのですかね‥?
よろしくお願いします‥
|