public bool isMatch()
        {
            if (personalSituation == null)
            {
                return(false);
            }

            if (comp.getKantsuCount() == 0)
            {
                return(false);
            }

            return(personalSituation.isRinshankaihoh());
        }
 public SankantsuResolver(MentsuComp comp)
 {
     kantsuCount = comp.getKantsuCount();
 }
Exemple #3
0
 public ShosushiResolver(MentsuComp comp)
 {
     janto      = comp.getJanto();
     kotsuList  = comp.getKotsuKantsu();
     kotsuCount = comp.getKotsuCount() + comp.getKantsuCount();
 }
Exemple #4
0
 public SanankoResolver(MentsuComp comp)
 {
     kotsuList  = comp.getKotsuKantsu();
     kotsuCount = comp.getKotsuCount() + comp.getKantsuCount();
 }
Exemple #5
0
 public ToitoihoResolver(MentsuComp comp)
 {
     kotsuCount = comp.getKantsuCount() + comp.getKotsuCount();
 }
 public ChinrohtohResolver(MentsuComp comp)
 {
     totalKotsuKantsu = comp.getKotsuCount() + comp.getKantsuCount();
     kotsuList        = comp.getKotsuKantsu();
     janto            = comp.getJanto();
 }