/* * Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.prism; public interface Surface { public int getPhysicalWidth(); public int getPhysicalHeight(); public int getContentX(); public int getContentY(); public int getContentWidth(); public int getContentHeight(); }