1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 package com.sun.star.report; 24 25 /** 26 * 27 * @author Ocke Janssen 28 */ 29 public class OfficeToken 30 { 31 32 public static final String GRAPHIC = "graphic"; 33 public static final String GRAPHICS = "Graphics"; 34 public static final String GRAPHIC_PROPERTIES = "graphic-properties"; 35 public static final String PARAGRAPH = "paragraph"; 36 public static final String TRUE = "true"; 37 public static final String FALSE = "false"; 38 public static final String FRAME = "frame"; 39 public static final String STYLE_NAME = "style-name"; 40 public static final String BACKGROUND_COLOR = "background-color"; 41 public static final String COVERED_TABLE_CELL = "covered-table-cell"; 42 public static final String TABLE = "table"; 43 public static final String TABLE_COLUMN = "table-column"; 44 public static final String TABLE_COLUMNS = "table-columns"; 45 public static final String TABLE_HEADER_COLUMNS = "table-header-columns"; 46 public static final String TABLE_HEADER_ROWS = "table-header-rows"; 47 public static final String TABLE_ROWS = "table-rows"; 48 public static final String TABLE_ROW = "table-row"; 49 public static final String TABLE_CELL = "table-cell"; 50 public static final String P = "p"; 51 public static final String OBJECT_OLE = "object-ole"; 52 public static final String IMAGE = "image"; 53 public static final String IMAGE_DATA = "image-data"; 54 public static final String PRESERVE_IRI = "preserve-IRI"; 55 public static final String SCALE = "scale"; 56 public static final String NAME = "name"; 57 public static final String SHAPES = "shapes"; 58 public static final String ISOTROPIC = "isotropic"; 59 public static final String ANISOTROPIC = "anisotropic"; 60 public static final String NONE = "none"; 61 } 62