Searched defs:GState (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPrinterJob.java797 mGStateStack.add(new GState());
1696 * Return the GState that is currently on top
1697 * of the GState stack. There should always be
1698 * a GState on top of the stack. If there isn't
1702 private GState getGState() {
1704 return (GState) mGStateStack.get(count - 1);
1709 * new GState on to our stack which represents
1713 GState oldGState = getGState();
1714 mGStateStack.add(new GState(oldGState));
1720 * a GState fro
1743 private class GState{ class in class:PSPrinterJob
1749 GState() { method in class:PSPrinterJob.GState
1756 GState(GState copyGState) { method in class:PSPrinterJob.GState
[all...]

Completed in 42 milliseconds