Lines Matching defs:comment1

1054     private String comment1 = "comment1";
1074 props.store(baos, comment1 + '\r' + comment2);
1075 validateOutput(new String[] { "#comment1", "#comment2" },
1083 props.store(baos, comment1 + '\n' + comment2);
1084 validateOutput(new String[] { "#comment1", "#comment2" },
1092 props.store(baos, comment1 + '\r' + '\n' + comment2);
1093 validateOutput(new String[] { "#comment1", "#comment2" },
1101 props.store(baos, comment1 + '\n' + '\r' + comment2);
1102 validateOutput(new String[] { "#comment1", "#", "#comment2" },
1110 props.store(baos, comment1 + '\r' + '#' + comment2);
1111 validateOutput(new String[] { "#comment1", "#comment2" },
1119 props.store(baos, comment1 + '\r' + '!' + comment2);
1120 validateOutput(new String[] { "#comment1", "!comment2" },
1128 props.store(baos, comment1 + '\n' + '#' + comment2);
1129 validateOutput(new String[] { "#comment1", "#comment2" },
1137 props.store(baos, comment1 + '\n' + '!' + comment2);
1138 validateOutput(new String[] { "#comment1", "!comment2" },
1146 props.store(baos, comment1 + '\r' + '\n' + '#' + comment2);
1147 validateOutput(new String[] { "#comment1", "#comment2" },
1155 props.store(baos, comment1 + '\n' + '\r' + '#' + comment2);
1156 validateOutput(new String[] { "#comment1", "#", "#comment2" },
1164 props.store(baos, comment1 + '\r' + '\n' + '!' + comment2);
1165 validateOutput(new String[] { "#comment1", "!comment2" },
1173 props.store(baos, comment1 + '\n' + '\r' + '!' + comment2);
1174 validateOutput(new String[] { "#comment1", "#", "!comment2" },