Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Alignment API
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
moex
Alignment API
Commits
dddbe9c7
Commit
dddbe9c7
authored
14 years ago
by
Cássia Trojahn dos Santos
Browse files
Options
Downloads
Patches
Plain Diff
No commit message
No commit message
parent
c0d5140b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
html/tutorial/tutorial5/SBWriter.java
+28
-0
28 additions, 0 deletions
html/tutorial/tutorial5/SBWriter.java
html/tutorial/tutorial5/index.html
+3
-0
3 additions, 0 deletions
html/tutorial/tutorial5/index.html
with
31 additions
and
0 deletions
html/tutorial/tutorial5/SBWriter.java
0 → 100644
+
28
−
0
View file @
dddbe9c7
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
();
}
}
This diff is collapsed.
Click to expand it.
html/tutorial/tutorial5/index.html
+
3
−
0
View file @
dddbe9c7
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment