blob: a9a3b1ef4707eb45bf3919dc815b40a11c37c328 [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;
}
}