###prop
selectionType=points
startLine=3
startColumn=1
endLine=7
endColumn=1
newMethodName=myNewMethod
modifier=protected
setPreferences=true
indentation=space
tabsize=4
###src
class HalloWelt {
    static void main() {
        for (def a = 0; a < 10; a++) {
            println("run")
        }
        println("HelloWorld")
    }
}
###exp
class HalloWelt {
    static void main() {
        myNewMethod()
    }

    protected static myNewMethod() {
        for (def a = 0; a < 10; a++) {
            println("run")
        }
        println("HelloWorld")
    }
}
###end