###prop
setPreferences=true
bracesEnd=next
###src
public class Braces {
public method() {
if (true) {
print "true"}
for(;;) {
print "for"}
while(false) {
print "false"}
switch (3) {
case 3:
print 3}
"hello".each {
print it }}}
###exp
public class Braces {
	public method() {
		if (true) {
			print "true"
		}
		for(;;) {
			print "for"
		}
		while(false) {
			print "false"
		}
		switch (3) {
			case 3:
				print 3
		}
		"hello".each { print it }
	}
}
###end