]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Interfaces not required
authorPeter Bernard West <pbwest@apache.org>
Thu, 22 Apr 2004 03:26:07 +0000 (03:26 +0000)
committerPeter Bernard West <pbwest@apache.org>
Thu, 22 Apr 2004 03:26:07 +0000 (03:26 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197529 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/properties/AbsoluteCorrespondingProperty.java [deleted file]
src/java/org/apache/fop/fo/properties/RelativeCorrespondingProperty.java [deleted file]

diff --git a/src/java/org/apache/fop/fo/properties/AbsoluteCorrespondingProperty.java b/src/java/org/apache/fop/fo/properties/AbsoluteCorrespondingProperty.java
deleted file mode 100644 (file)
index 4eb2981..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- *
- * 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 20/04/2004
- * $Id$
- */
-package org.apache.fop.fo.properties;
-
-import org.apache.fop.fo.FONode;
-import org.apache.fop.fo.expr.PropertyException;
-
-/**
- * Interface implemented by those <code>Property</code> classes which have
- * corresponding <b><i>relative</i></b> properties; <i>i.e.</i> which are
- * themselves corresponding <i>absolute</i> properties.
- * 
- * @author pbw
- * @version $Revision$ $Name$
- */
-public interface AbsoluteCorrespondingProperty
-extends CorrespondingProperty {
-    public int getCorrespondingRelativeProperty(FONode foNode)
-    throws PropertyException;
-    public boolean overridesCorresponding(FONode foNode);
-}
diff --git a/src/java/org/apache/fop/fo/properties/RelativeCorrespondingProperty.java b/src/java/org/apache/fop/fo/properties/RelativeCorrespondingProperty.java
deleted file mode 100644 (file)
index b71ce99..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- *
- * 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 20/04/2004
- * $Id$
- */
-package org.apache.fop.fo.properties;
-
-import org.apache.fop.fo.FONode;
-import org.apache.fop.fo.expr.PropertyException;
-
-/**
- * Interface implemented by those <code>Property</code> classes which have
- * corresponding <b><i>absolute</i></b> properties; <i>i.e.</i> which are
- * themselves corresponding <i>relative</i> properties.
- * 
- * @author pbw
- * @version $Revision$ $Name$
- */
-public interface RelativeCorrespondingProperty
-extends CorrespondingProperty {
-    public int getCorrespondingAbsoluteProperty(FONode foNode)
-    throws PropertyException;
-    public boolean correspondingOverrides(FONode foNode);
-}