blob: 92654a8351b058c9920b86139d2be927f4ca0597 [file] [log] [blame]
public class AlwaysMoreIndentation {
int x = 0;
/**
* Returns the x.
* @return int
*/
public int getX() {
return x;
}
/**
* Sets the x.
* @param x The x to set
*/
public void setX(int x) {
this.x = x;
}
}