Advertisement
jfrubiom

Item.java

Sep 17th, 2011
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. package com.newsapp;
  2.  
  3. public class Item {
  4.     public String title = null;
  5.     public String description = null;
  6.     public String link = null;
  7.      
  8.     public Item(String title, String description, String link) {
  9.         this.title = title;
  10.         this.description = description;
  11.         this.link = link;
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement