org.refcodes.graphical.ContainerMetrics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of refcodes-graphical Show documentation
Show all versions of refcodes-graphical Show documentation
Artifact for graphical issues regarding RGB, pixel, fonts, and other stuff (utility).
The newest version!
/*
*
*/
package org.refcodes.graphical;
/**
* The Interface ContainerMetrics.
*/
public interface ContainerMetrics {
/**
* To total width.
*
* @return the int
*/
int toTotalWidth();
/**
* To total height.
*
* @return the int
*/
int toTotalHeight();
}