package p;

//comment
public class Comment {
	public static class CommentData {
		public int i;
		public CommentData() {
		}
	}

	CommentData parameterObject = new CommentData();
}