サンプル

public class TestClass {
void MethodName() {
}
}


解決策
デフォルトの正規表現マスクでは、非 static メソッドの名前が小文字で始まるようになっています。

正規表現を編集するためには、「詳細...」ボタンをクリックしてください。


public class TestClass {
void methodName() {
}
}