summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Bernard West <pbwest@apache.org>2004-07-24 02:50:30 +0000
committerPeter Bernard West <pbwest@apache.org>2004-07-24 02:50:30 +0000
commit123a12114db248ec0601b84d899d2a02a405458a (patch)
tree869968c73f77303c5a72009aeaed54bc74fd39cd
parent1cf5306a83ad4de87c68951d732e6820c441b00a (diff)
downloadxmlgraphics-fop-123a12114db248ec0601b84d899d2a02a405458a.tar.gz
xmlgraphics-fop-123a12114db248ec0601b84d899d2a02a405458a.zip
Supersede AbstractViewport and AbstractReferenceArea
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197809 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--src/java/org/apache/fop/area/inline/InlineReferenceArea.java67
-rw-r--r--src/java/org/apache/fop/area/inline/InlineViewportArea.java82
2 files changed, 149 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/area/inline/InlineReferenceArea.java b/src/java/org/apache/fop/area/inline/InlineReferenceArea.java
new file mode 100644
index 000000000..b3b6373a8
--- /dev/null
+++ b/src/java/org/apache/fop/area/inline/InlineReferenceArea.java
@@ -0,0 +1,67 @@
+/*
+ *
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * Created on 24/07/2004
+ * $Id$
+ */
+package org.apache.fop.area.inline;
+
+import java.awt.geom.AffineTransform;
+
+import org.apache.fop.area.ReferenceArea;
+import org.apache.fop.datastructs.Node;
+import org.apache.fop.fo.FONode;
+import org.apache.fop.fo.flow.FoPageSequence;
+
+
+/**
+ * @author pbw
+ * @version $Revision$ $Name$
+ */
+public abstract class InlineReferenceArea extends InlineArea implements
+ ReferenceArea {
+ private static final String tag = "$Name$";
+ private static final String revision = "$Revision$";
+ /**
+ * @param pageSeq
+ * @param generatedBy
+ * @param parent
+ * @param sync
+ */
+ public InlineReferenceArea(FoPageSequence pageSeq, FONode generatedBy,
+ Node parent, Object sync) {
+ super(pageSeq, generatedBy, parent, sync);
+ // TODO Auto-generated constructor stub
+ }
+
+ /* (non-Javadoc)
+ * @see org.apache.fop.area.ReferenceArea#setCoordTransformer(java.awt.geom.AffineTransform)
+ */
+ public void setCoordTransformer(AffineTransform matrix) {
+ // TODO Auto-generated method stub
+
+ }
+
+ /* (non-Javadoc)
+ * @see org.apache.fop.area.ReferenceArea#getCoordTransformer()
+ */
+ public AffineTransform getCoordTransformer() {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+}
+
diff --git a/src/java/org/apache/fop/area/inline/InlineViewportArea.java b/src/java/org/apache/fop/area/inline/InlineViewportArea.java
new file mode 100644
index 000000000..fa666f4ce
--- /dev/null
+++ b/src/java/org/apache/fop/area/inline/InlineViewportArea.java
@@ -0,0 +1,82 @@
+/*
+ *
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * Created on 24/07/2004
+ * $Id$
+ */
+package org.apache.fop.area.inline;
+
+import org.apache.fop.area.ReferenceArea;
+import org.apache.fop.area.Viewport;
+import org.apache.fop.datastructs.Node;
+import org.apache.fop.fo.FONode;
+import org.apache.fop.fo.flow.FoPageSequence;
+
+
+/**
+ * @author pbw
+ * @version $Revision$ $Name$
+ */
+public abstract class InlineViewportArea extends InlineArea implements Viewport {
+
+ /**
+ * @param pageSeq
+ * @param generatedBy
+ * @param parent
+ * @param sync
+ */
+ public InlineViewportArea(FoPageSequence pageSeq, FONode generatedBy,
+ Node parent, Object sync) {
+ super(pageSeq, generatedBy, parent, sync);
+ // TODO Auto-generated constructor stub
+ }
+
+ /* (non-Javadoc)
+ * @see org.apache.fop.area.Viewport#setReferenceArea(org.apache.fop.area.ReferenceArea)
+ */
+ public void setReferenceArea(ReferenceArea ref) {
+ // TODO Auto-generated method stub
+
+ }
+
+ /* (non-Javadoc)
+ * @see org.apache.fop.area.Viewport#getReferenceArea()
+ */
+ public ReferenceArea getReferenceArea() {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ /* (non-Javadoc)
+ * @see org.apache.fop.area.Viewport#setClip(boolean)
+ */
+ public void setClip(boolean clip) {
+ // TODO Auto-generated method stub
+
+ }
+
+ /* (non-Javadoc)
+ * @see org.apache.fop.area.Viewport#getClip()
+ */
+ public boolean getClip() {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+}
+
+//private static final String tag = "$Name$";
+//private static final String revision = "$Revision$"; \ No newline at end of file