Example usage for org.apache.commons.net.nntp ArticleInfo ArticleInfo

List of usage examples for org.apache.commons.net.nntp ArticleInfo ArticleInfo

Introduction

In this page you can find the example usage for org.apache.commons.net.nntp ArticleInfo ArticleInfo.

Prototype

public ArticleInfo() 

Source Link

Usage

From source file:net.longfalcon.newsj.nntp.client.CustomNNTPClient.java

private ArticleInfo __ap2ai(@SuppressWarnings("deprecation") ArticlePointer ap) {
    if (ap == null) {
        return null;
    }//from  w  w  w  .j  a  v a2 s  .  c om
    ArticleInfo ai = new ArticleInfo();
    return ai;
}