Package com.etown.model

Examples of com.etown.model.Article


      }
    }
  }
 
  public static void main(String[] args) {
    Article article = new Article();
    article.setArticleId(1);
    article.setTitle("测试");
    article.setContent("The FileReader class creates a Reader that you can use to read the contents of a file。 Its two most commonly used constructors are shown here:");
    article.setPubDate(new Date());
    article.setModifyDate(new Date());
    article.setUserId(1231);
    try {
      PreProcessor.Process(article);
    } catch (Exception e) {
      e.printStackTrace();
    }
View Full Code Here

TOP

Related Classes of com.etown.model.Article

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.