QuerySearch.java :  » Google-tech » siena » siena » Java Open Source

Java Open Source » Google tech » siena 
siena » siena » QuerySearch.java
package siena;

public class QuerySearch {
  
  public String match;
  public boolean inBooleanMode;
  public String index;
  
  public QuerySearch(String match, boolean inBooleanMode,
      String index) {
    this.match = match;
    this.inBooleanMode = inBooleanMode;
    this.index = index;
  }
  
}
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.