Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Viewport.java 590B

12345678910111213141516171819202122
  1. /*
  2. * $Id$
  3. * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
  4. * For details on use and redistribution please refer to the
  5. * LICENSE file included with these sources.
  6. */
  7. package org.apache.fop.area.inline;
  8. import org.apache.fop.area.Area;
  9. import java.awt.geom.Rectangle2D;
  10. public class Viewport extends InlineArea {
  11. // contents could be foreign object or image
  12. Area content;
  13. // an inline-level viewport area for graphic and instream foreign object
  14. boolean clip = false;
  15. // position relative to this area
  16. Rectangle2D contentPosition;
  17. }