Field.java :  » Game » crossword-master » com » crosswordmaster » brain » Android Open Source

Android Open Source » Game » crossword master 
crossword master » com » crosswordmaster » brain » Field.java
package com.crosswordmaster.brain;

public class Field {

  private int type;
  private String text;
  public static final int BLANK = 0;
  public static final int STRING = 1;
  public static final int LEGEND = 2;

  public int getType() {
      return type;
  }

  public void setType(int type) {
    this.type = type;
  }

  public String getText() {
      return text;
  }

  public void setText(String text) {
    this.text = text;
  }
}
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.