Back to project page RabbitEars.
The source code is released under:
MIT License
If you think the Android project RabbitEars 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.fbs.rabbitears.utils; //from w w w . ja v a 2 s. co m /** * Size width and height */ public class Size<TWidth, THeight> { public TWidth width; public THeight height; /** * Constructor * @param width TWidth size width * @param height THeight size height */ public Size(TWidth width, THeight height) { this.width = width; this.height = height; } }