Solution.java :  » Game » vezilka » org » feit » findword » trie » Android Open Source

Android Open Source » Game » vezilka 
vezilka » org » feit » findword » trie » Solution.java
package org.feit.findword.trie;

public class Solution {
  private String word;
  private long mask;

  public Solution(String word, long mask) {
    this.word = word;
    this.mask = mask;
  }

  public String getWord() {
    return word;
  }

  public long getMask() {
    return mask;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.