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