Board.java :  » Client » simplesmth » com » vivilab » smth » model » Android Open Source

Android Open Source » Client » simplesmth 
simplesmth » com » vivilab » smth » model » Board.java
package com.vivilab.smth.model;

import java.util.List;

public class Board {

  private List articles;
  private int ppage;
  private int npage;
  private int ftype;
  
  public List getArticles() {
    return articles;
  }
  public void setArticles(List articles) {
    this.articles = articles;
  }
  public int getPpage() {
    return ppage;
  }
  public void setPpage(int ppage) {
    this.ppage = ppage;
  }
  public int getNpage() {
    return npage;
  }
  public void setNpage(int npage) {
    this.npage = npage;
  }
  public void setFtype(int ftype) {
    this.ftype = ftype;
  }
  public int getFtype() {
    return ftype;
  }
  
  
}
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.