OSDN Git Service

worker listenerのインタフェース名変更
[coroid/inqubus.git] / frontend / src / saccubus / worker / ConvertResult.java
1 package saccubus.worker;
2
3 /**
4  *
5  * @author yuki
6  */
7 public class ConvertResult {
8
9     private final boolean resultValue;
10     private final String title;
11
12     ConvertResult(boolean b, String title) {
13         this.resultValue = b;
14         this.title = title;
15     }
16
17     public boolean isResultValue() {
18         return resultValue;
19     }
20
21     public String getTitle() {
22         return title;
23     }
24 }