Mentions légales du service

Skip to content
Snippets Groups Projects
Commit dddbe9c7 authored by Cássia Trojahn dos Santos's avatar Cássia Trojahn dos Santos
Browse files

No commit message

No commit message
parent c0d5140b
No related branches found
No related tags found
No related merge requests found
package example.ws.matcher
import java.io.BufferedWriter;
import java.io.FileNotFoundException;
import java.io.PrintWriter;
public class SBWriter extends PrintWriter {
StringBuffer sb;
public SBWriter(String string) throws FileNotFoundException {
super(string);
}
public SBWriter(BufferedWriter bufferedWriter, boolean b) throws FileNotFoundException {
super(bufferedWriter, b);
this.sb = new StringBuffer();
}
public void print(String s) {
sb.append(s);
}
public String toString() {
return this.sb.toString();
}
}
...@@ -188,6 +188,9 @@ public class MyAlignmentWS extends MyAlignment implements AlignmentWS { ...@@ -188,6 +188,9 @@ public class MyAlignmentWS extends MyAlignment implements AlignmentWS {
<p> Nothing more is needed. </p> <p> Nothing more is needed. </p>
<p> You can download <a href="SBWriter.java">SBWriter.java</a>.</p>
<h2>Publishing the web service</h2> <h2>Publishing the web service</h2>
<p>In order to be available for external access, the web service must <p>In order to be available for external access, the web service must
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment