Searched defs:line (Results 1 - 25 of 233) sorted by relevance

12345678910

/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/util/
H A DOutputReader.java42 * @param line String representing new input
44 public abstract void processLine(String line); argument
55 String line;
56 while (null != (line = reader.readLine())) {
57 processLine(line);
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/util/
H A DOutputReader.java43 * @param line String representing new input
45 public abstract void processLine(String line); argument
56 String line;
57 while (null != (line = reader.readLine())) {
58 processLine(line);
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/event/
H A DPrintStreamListener.java40 * Notification that a new line has been written in a PrintStream.
41 * @param line the new line.
43 public void newLine(String line); argument
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/event/
H A DPrintStreamListener.java41 * Notification that a new line has been written in a PrintStream.
42 * @param line the new line.
44 public void newLine(String line); argument
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/util/
H A DOutputReader.java43 * @param line String representing new input
45 public abstract void processLine(String line); argument
56 String line;
57 while (null != (line = reader.readLine())) {
58 processLine(line);
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/event/
H A DPrintStreamListener.java41 * Notification that a new line has been written in a PrintStream.
42 * @param line the new line.
44 public void newLine(String line); argument
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/event/
H A DPrintStreamListener.java40 * Notification that a new line has been written in a PrintStream.
41 * @param line the new line.
43 public void newLine(String line); argument
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/util/
H A DOutputReader.java42 * @param line String representing new input
44 public abstract void processLine(String line); argument
55 String line;
56 while (null != (line = reader.readLine())) {
57 processLine(line);
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/event/
H A DPrintStreamListener.java41 * Notification that a new line has been written in a PrintStream.
42 * @param line the new line.
44 public void newLine(String line); argument
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/util/
H A DOutputReader.java43 * @param line String representing new input
45 public abstract void processLine(String line); argument
56 String line;
57 while (null != (line = reader.readLine())) {
58 processLine(line);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/event/
H A DPrintStreamListener.java41 * Notification that a new line has been written in a PrintStream.
42 * @param line the new line.
44 void newLine(String line); argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/quicksetup/util/
H A DOutputReader.java44 * @param line String representing new input
46 public abstract void processLine(String line); argument
57 String line;
58 while (null != (line = reader.readLine())) {
59 processLine(line);
/forgerock/openam-v13/openam-tools/build-helper-plugin/src/main/java/org/forgerock/maven/plugins/inject/content/
H A DContentConverter.java27 * Converts the contents of the given line.
29 * @param line The line to convert.
30 * @return The converted line.
32 String convert(String line); argument
H A DNoOpContentConverter.java27 * Simply returns the same line as given.
29 * @param line {@inheritDoc}
30 * @return The same line.
32 public String convert(String line) { argument
33 return line;
H A DXmlContentConverter.java22 * An implementation of a {@code ContentConverter} which will escape xml special characters from the line.
31 * @param line {@inheritDoc}
34 public String convert(String line) { argument
35 return StringEscapeUtils.escapeXml(line);
H A DIOFactory.java72 * Writes the given content file using the given writer, converting each line using the given
84 String line;
85 while ((line = contentReader.readLine()) != null) {
86 writeLine(writer, contentConverter.convert(line));
96 * Writes the given line with the given writer, followed by a new line.
99 * @param line The line.
100 * @throws IOException If there is a problem writing the line.
102 void writeLine(BufferedWriter writer, String line) throw argument
[all...]
H A DInjectContent.java105 String line;
106 while ((line = reader.readLine()) != null) {
107 File content = doesLineMatchId(contents, line);
111 ioFactory.writeLine(writer, line);
143 * Pattern matches the content placeholder IDs against the given line.
146 * @param line The line.
147 * @return The matching content file, or {@code null} if no content placeholder ID matched the line.
149 private File doesLineMatchId(Map<Pattern, File> contents, String line) { argument
151 if (pattern.matcher(line)
[all...]
/forgerock/openam/openam-tools/build-helper-plugin/src/main/java/org/forgerock/maven/plugins/inject/content/
H A DContentConverter.java27 * Converts the contents of the given line.
29 * @param line The line to convert.
30 * @return The converted line.
32 String convert(String line); argument
H A DNoOpContentConverter.java27 * Simply returns the same line as given.
29 * @param line {@inheritDoc}
30 * @return The same line.
32 public String convert(String line) { argument
33 return line;
H A DXmlContentConverter.java22 * An implementation of a {@code ContentConverter} which will escape xml special characters from the line.
31 * @param line {@inheritDoc}
34 public String convert(String line) { argument
35 return StringEscapeUtils.escapeXml(line);
H A DIOFactory.java72 * Writes the given content file using the given writer, converting each line using the given
84 String line;
85 while ((line = contentReader.readLine()) != null) {
86 writeLine(writer, contentConverter.convert(line));
96 * Writes the given line with the given writer, followed by a new line.
99 * @param line The line.
100 * @throws IOException If there is a problem writing the line.
102 void writeLine(BufferedWriter writer, String line) throw argument
[all...]
H A DInjectContent.java105 String line;
106 while ((line = reader.readLine()) != null) {
107 File content = doesLineMatchId(contents, line);
111 ioFactory.writeLine(writer, line);
143 * Pattern matches the content placeholder IDs against the given line.
146 * @param line The line.
147 * @return The matching content file, or {@code null} if no content placeholder ID matched the line.
149 private File doesLineMatchId(Map<Pattern, File> contents, String line) { argument
151 if (pattern.matcher(line)
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/tools/
H A DLDAPDelete.java130 for(String line : lines)
132 executeDelete(connection, line, deleteOptions);
154 String line = null;
156 while ((line = in.readLine()) != null)
158 executeDelete(connection, line, deleteOptions);
168 * @param line The DN to delete.
176 private void executeDelete(LDAPConnection connection, String line, argument
182 ByteString asn1OctetStr = ByteString.valueOf(line);
239 Message msg = INFO_OPERATION_SUCCESSFUL.get("DELETE", line);
249 * @param args The command-line argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/tools/
H A DLDAPDelete.java129 for(String line : lines)
131 executeDelete(connection, line, deleteOptions);
153 String line = null;
155 while ((line = in.readLine()) != null)
157 executeDelete(connection, line, deleteOptions);
167 * @param line The DN to delete.
175 private void executeDelete(LDAPConnection connection, String line, argument
181 ByteString asn1OctetStr = ByteString.valueOf(line);
238 Message msg = INFO_OPERATION_SUCCESSFUL.get("DELETE", line);
248 * @param args The command-line argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/tools/
H A DLDAPDelete.java130 for(String line : lines)
132 executeDelete(connection, line, deleteOptions);
154 String line = null;
156 while ((line = in.readLine()) != null)
158 executeDelete(connection, line, deleteOptions);
168 * @param line The DN to delete.
176 private void executeDelete(LDAPConnection connection, String line, argument
182 ByteString asn1OctetStr = ByteString.valueOf(line);
239 Message msg = INFO_OPERATION_SUCCESSFUL.get("DELETE", line);
249 * @param args The command-line argument
[all...]

Completed in 135 milliseconds

12345678910