diff options
author | Jeremias Maerki <jeremias@apache.org> | 2008-08-12 14:44:55 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2008-08-12 14:44:55 +0000 |
commit | e714868660adf4707400d5a6d7b1bd9da0db2e1a (patch) | |
tree | 967c2bee385a1f6ab6cafd2fe0f280d80b6f1e4f /src/java/org/apache/fop/render/intermediate/extensions/AbstractAction.java | |
parent | 8454b389c6655242c35359f9db76e75ee2910cca (diff) | |
download | xmlgraphics-fop-e714868660adf4707400d5a6d7b1bd9da0db2e1a.tar.gz xmlgraphics-fop-e714868660adf4707400d5a6d7b1bd9da0db2e1a.zip |
Added support for bookmarks to intermediate format (including PDF painter).
Added infrastructure for IF testing similar to AT testing with XPaths. To minimize the additional processing needed it is attached to the layout engine tests and only executed if there are IF checks in the test case.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AreaTreeNewDesign@685170 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/render/intermediate/extensions/AbstractAction.java')
-rw-r--r-- | src/java/org/apache/fop/render/intermediate/extensions/AbstractAction.java | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/render/intermediate/extensions/AbstractAction.java b/src/java/org/apache/fop/render/intermediate/extensions/AbstractAction.java new file mode 100644 index 000000000..37a3032cd --- /dev/null +++ b/src/java/org/apache/fop/render/intermediate/extensions/AbstractAction.java @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/* $Id$ */ + +package org.apache.fop.render.intermediate.extensions; + +import org.apache.xmlgraphics.util.XMLizable; + +/** + * Abstract base class for document actions, like "go-to" actions with absolute page coordinates. + */ +public abstract class AbstractAction implements XMLizable { + +} |