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

com.sun.webkit.graphics.WCSize Maven / Gradle / Ivy

/*
 * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
 */
package com.sun.webkit.graphics;

public final class WCSize {
    private final float width;
    private final float height;

    public WCSize(float width, float height) {
        this.width = width;
        this.height = height;
    }

    public float getWidth() {
        return width;
    }

    public float getHeight() {
        return height;
    }

    public int getIntWidth() {
        return (int)width;
    }

    public int getIntHeight() {
        return (int)height;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy