Преглед изворни кода

Fixed copy constructor


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@604185 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_95beta
Adrian Cumiskey пре 16 година
родитељ
комит
00ba9d896e
1 измењених фајлова са 7 додато и 2 уклоњено
  1. 7
    2
      src/java/org/apache/fop/render/afp/AFPGraphics2D.java

+ 7
- 2
src/java/org/apache/fop/render/afp/AFPGraphics2D.java Прегледај датотеку

@@ -89,13 +89,18 @@ public class AFPGraphics2D extends AbstractGraphics2D {
}

/**
* Creates a new AbstractGraphics2D from an existing instance.
* Creates a new AFPGraphics2D from an existing instance.
*
* @param g
* the AbstractGraphics2D whose properties should be copied
* the AFPGraphics2D whose properties should be copied
*/
public AFPGraphics2D(AFPGraphics2D g) {
super(g);
this.graphicsObj = g.graphicsObj;
this.fallbackTextHandler = g.fallbackTextHandler;
this.customTextHandler = g.customTextHandler;
this.afpInfo = g.afpInfo;
this.afpState = g.afpState;
}

/**

Loading…
Откажи
Сачувај