< prev index next >

src/java.desktop/share/classes/sun/java2d/pipe/SpanIterator.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1998, 1999, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 46,56 **** * will be filled with the values: * <pre> * {PathMinX, PathMinY, PathMaxX, PathMaxY}. * </pre> */ ! public void getPathBox(int pathbox[]); /** * This method constrains the spans returned by nextSpan() to the * rectangle whose bounds are given. */ --- 46,56 ---- * will be filled with the values: * <pre> * {PathMinX, PathMinY, PathMaxX, PathMaxY}. * </pre> */ ! public void getPathBox(int[] pathbox); /** * This method constrains the spans returned by nextSpan() to the * rectangle whose bounds are given. */
*** 62,72 **** * will be filled with the values: * <pre> * {SpanMinX, SpanMinY, SpanMaxX, SpanMaxY}. * </pre> */ ! public boolean nextSpan(int spanbox[]); /** * This method tells the iterator that it may skip all spans * whose Y range is completely above the indicated Y coordinate. * This method is used to provide feedback from the caller when --- 62,72 ---- * will be filled with the values: * <pre> * {SpanMinX, SpanMinY, SpanMaxX, SpanMaxY}. * </pre> */ ! public boolean nextSpan(int[] spanbox); /** * This method tells the iterator that it may skip all spans * whose Y range is completely above the indicated Y coordinate. * This method is used to provide feedback from the caller when
< prev index next >