Files
android_translation_layer/src/api-impl/android/util/Size.java

21 lines
267 B
Java
Raw Normal View History

package android.util;
public class Size {
private int width;
private int height;
public Size(int width, int height) {
this.width = width;
this.height = height;
}
public int getWidth() {
return width;
}
public int getHeight() {
return height;
}
}