All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ir.sadeghpro.insta.client.Dimension Maven / Gradle / Ivy

Go to download

this is library for working with instagram without using instagram api. this library use instagram web browser

There is a newer version: 1.2.3
Show newest version
package ir.sadeghpro.insta.client;

public class Dimension {
    private int width;
    private int height;

    public Dimension(int width, int height){
        this.width = width;
        this.height = height;
    }

    public Dimension(){

    }

    public void setSize(int width, int height){
        this.width = width;
        this.height = height;
    }

    public int getWidth() {
        return width;
    }

    public void setWidth(int width) {
        this.width = width;
    }

    public int getHeight() {
        return height;
    }

    public void setHeight(int height) {
        this.height = height;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy