1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 package com.sun.star.report; 28 29 /** 30 * 31 * @author Ocke Janssen 32 */ 33 public class OfficeToken 34 { 35 36 public static final String GRAPHIC = "graphic"; 37 public static final String GRAPHICS = "Graphics"; 38 public static final String GRAPHIC_PROPERTIES = "graphic-properties"; 39 public static final String PARAGRAPH = "paragraph"; 40 public static final String TRUE = "true"; 41 public static final String FALSE = "false"; 42 public static final String FRAME = "frame"; 43 public static final String STYLE_NAME = "style-name"; 44 public static final String BACKGROUND_COLOR = "background-color"; 45 public static final String COVERED_TABLE_CELL = "covered-table-cell"; 46 public static final String TABLE = "table"; 47 public static final String TABLE_COLUMN = "table-column"; 48 public static final String TABLE_COLUMNS = "table-columns"; 49 public static final String TABLE_HEADER_COLUMNS = "table-header-columns"; 50 public static final String TABLE_HEADER_ROWS = "table-header-rows"; 51 public static final String TABLE_ROWS = "table-rows"; 52 public static final String TABLE_ROW = "table-row"; 53 public static final String TABLE_CELL = "table-cell"; 54 public static final String P = "p"; 55 public static final String OBJECT_OLE = "object-ole"; 56 public static final String IMAGE = "image"; 57 public static final String IMAGE_DATA = "image-data"; 58 public static final String PRESERVE_IRI = "preserve-IRI"; 59 public static final String SCALE = "scale"; 60 public static final String NAME = "name"; 61 public static final String SHAPES = "shapes"; 62 public static final String ISOTROPIC = "isotropic"; 63 public static final String ANISOTROPIC = "anisotropic"; 64 public static final String NONE = "none"; 65 } 66