From: Peter Bernard West Date: Thu, 22 Apr 2004 03:26:07 +0000 (+0000) Subject: Interfaces not required X-Git-Tag: Defoe_export~216 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bee556e4aa5101f8221d4e0a22b74bee054d1672;p=xmlgraphics-fop.git Interfaces not required git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197529 13f79535-47bb-0310-9956-ffa450edef68 --- 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 index 4eb298165..000000000 --- a/src/java/org/apache/fop/fo/properties/AbsoluteCorrespondingProperty.java +++ /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 Property classes which have - * corresponding relative properties; i.e. which are - * themselves corresponding absolute 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 index b71ce994f..000000000 --- a/src/java/org/apache/fop/fo/properties/RelativeCorrespondingProperty.java +++ /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 Property classes which have - * corresponding absolute properties; i.e. which are - * themselves corresponding relative properties. - * - * @author pbw - * @version $Revision$ $Name$ - */ -public interface RelativeCorrespondingProperty -extends CorrespondingProperty { - public int getCorrespondingAbsoluteProperty(FONode foNode) - throws PropertyException; - public boolean correspondingOverrides(FONode foNode); -}