Back to project page TinyRss.
The source code is released under:
Copyright (c) 2012, Tiny Mission LLC All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met...
If you think the Android project TinyRss listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.tinymission.rss; //from w ww . ja va2 s. c om import org.xml.sax.Attributes; public class MediaThumbnail extends FeedEntity { public MediaThumbnail(Attributes attributes) { super(attributes); } private String url; private int width; private int height; /** * @return the url */ public String getUrl() { return url; } /** * @param url the url to set */ public void setUrl(String url) { this.url = url; } /** * @return the width */ public int getWidth() { return width; } /** * @param width the width to set */ public void setWidth(int width) { this.width = width; } /** * @return the height */ public int getHeight() { return height; } /** * @param width the width to set */ public void setHeight(int height) { this.height = height; } }