Mercurial > repos > mikel-egana-aranguren > sparql_galaxy
annotate src/es/cbgp/galaxy/sparql/main/Result.java @ 0:137f9a4a6337 draft
First version to init the repo, still README etc to add but it works
author | mikel-egana-aranguren |
---|---|
date | Thu, 25 Oct 2012 12:17:40 -0400 |
parents | |
children |
rev | line source |
---|---|
0
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
1 package es.cbgp.galaxy.sparql.main; |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
2 |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
3 public class Result { |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
4 private boolean boolValue; |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
5 private String message; |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
6 |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
7 public Result(boolean b, String m) { |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
8 this.boolValue = b; |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
9 this.message = m; |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
10 } |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
11 |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
12 public Result(boolean b) { |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
13 this.boolValue = b; |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
14 } |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
15 |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
16 public String getMessage() { |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
17 return this.message; |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
18 } |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
19 |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
20 public boolean getBoolValue() { |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
21 return this.boolValue; |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
22 } |
137f9a4a6337
First version to init the repo, still README etc to add but it works
mikel-egana-aranguren
parents:
diff
changeset
|
23 } |