comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:137f9a4a6337
1 package es.cbgp.galaxy.sparql.main;
2
3 public class Result {
4 private boolean boolValue;
5 private String message;
6
7 public Result(boolean b, String m) {
8 this.boolValue = b;
9 this.message = m;
10 }
11
12 public Result(boolean b) {
13 this.boolValue = b;
14 }
15
16 public String getMessage() {
17 return this.message;
18 }
19
20 public boolean getBoolValue() {
21 return this.boolValue;
22 }
23 }