
org.apache.maven.doxia.module.fo.FoMarkup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doxia-module-fo Show documentation
Show all versions of doxia-module-fo Show documentation
A Doxia module for FO (Formatting Objects) source documents.
package org.apache.maven.doxia.module.fo;
/*
* 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.
*/
import javax.swing.text.html.HTML.Tag;
import org.apache.maven.doxia.markup.XmlMarkup;
/**
* List of FO
markups.
*
* @author ltheussl
* @version $Id: FoMarkup.java 1633964 2014-10-23 22:01:01Z hboutemy $
* @since 1.1
*/
@SuppressWarnings( "checkstyle:interfaceistype" )
public interface FoMarkup
extends XmlMarkup
{
/** FO namespace: "http://www.w3.org/1999/XSL/Format" */
String FO_NAMESPACE = "http://www.w3.org/1999/XSL/Format";
// ----------------------------------------------------------------------
// Specific FO tags
// ----------------------------------------------------------------------
/** FO tag for root
. */
Tag ROOT_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "root";
}
};
/** FO tag for layout-master-set
. */
Tag LAYOUT_MASTER_SET_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "layout-master-set";
}
};
/** FO tag for simple-page-master
. */
Tag SIMPLE_PAGE_MASTER_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "simple-page-master";
}
};
/** FO tag for region-body
. */
Tag REGION_BODY_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "region-body";
}
};
/** FO tag for region-before
. */
Tag REGION_BEFORE_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "region-before";
}
};
/** FO tag for region-after
. */
Tag REGION_AFTER_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "region-after";
}
};
/** FO tag for static-content
. */
Tag STATIC_CONTENT_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "static-content";
}
};
/** FO tag for page-sequence
. */
Tag PAGE_SEQUENCE_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "page-sequence";
}
};
/** FO tag for flow
. */
Tag FLOW_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "flow";
}
};
/** FO tag for block
. */
Tag BLOCK_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "block";
}
};
/** FO tag for list-block
. */
Tag LIST_BLOCK_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "list-block";
}
};
/** FO tag for list-item
. */
Tag LIST_ITEM_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "list-item";
}
};
/** FO tag for list-item-body
. */
Tag LIST_ITEM_BODY_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "list-item-body";
}
};
/** FO tag for list-item-label
. */
Tag LIST_ITEM_LABEL_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "list-item-label";
}
};
/** FO tag for table-and-caption
. */
Tag TABLE_AND_CAPTION_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "table-and-caption";
}
};
/** FO tag for table
. */
Tag TABLE_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "table";
}
};
/** FO tag for table-body
. */
Tag TABLE_BODY_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "table-body";
}
};
/** FO tag for table-column
. */
Tag TABLE_COLUMN_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "table-column";
}
};
/** FO tag for table-row
. */
Tag TABLE_ROW_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "table-row";
}
};
/** FO tag for table-cell
. */
Tag TABLE_CELL_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "table-cell";
}
};
/** FO tag for table-caption
. */
Tag TABLE_CAPTION_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "table-caption";
}
};
/** FO tag for inline
. */
Tag INLINE_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "inline";
}
};
/** FO tag for basic-link
. */
Tag BASIC_LINK_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "basic-link";
}
};
/** FO tag for leader
. */
Tag LEADER_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "leader";
}
};
/** FO tag for page-number
. */
Tag PAGE_NUMBER_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "page-number";
}
};
/** FO tag for page-number-citation
. */
Tag PAGE_NUMBER_CITATION_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "page-number-citation";
}
};
/** FO tag for bookmark-tree
. */
Tag BOOKMARK_TREE_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "bookmark-tree";
}
};
/** FO tag for bookmark
. */
Tag BOOKMARK_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "bookmark";
}
};
/** FO tag for bookmark-title
. */
Tag BOOKMARK_TITLE_TAG = new Tag()
{
/** {@inheritDoc} */
public String toString()
{
return "bookmark-title";
}
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy