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.wizards.common; 28 29 /** 30 * 31 * @author Ocke Janssen 32 */ 33 public class PropertyNames 34 { 35 36 public static String PROPERTY_ENABLED = "Enabled"; 37 public static String PROPERTY_HEIGHT = "Height"; 38 public static String PROPERTY_HELPURL = "HelpURL"; 39 public static String PROPERTY_POSITION_X = "PositionX"; 40 public static String PROPERTY_POSITION_Y = "PositionY"; 41 public static String PROPERTY_LABEL = "Label"; 42 public static String PROPERTY_MULTILINE = "MultiLine"; 43 public static String PROPERTY_NAME = "Name"; 44 public static String PROPERTY_STEP = "Step"; 45 public static String PROPERTY_WIDTH = "Width"; 46 public static String PROPERTY_TABINDEX = "TabIndex"; 47 public static String PROPERTY_STATE = "State"; 48 public static String PROPERTY_IMAGEURL = "ImageURL"; 49 public static String PROPERTY_TITLE = "Title"; 50 public static String PROPERTY_BORDER = "Border"; 51 public static String PROPERTY_MOVEABLE = "Moveable"; 52 public static String PROPERTY_CLOSEABLE = "Closeable"; 53 public static String PROPERTY_ALIGN = "Align"; 54 public static String COMMAND = "Command"; 55 public static String COMMAND_TYPE = "CommandType"; 56 public static String SELECTED_ITEMS = "SelectedItems"; 57 public static String URL = "URL"; 58 public static String ACTIVE_CONNECTION = "ActiveConnection"; 59 public static String ASC = "ASC"; 60 public static String SEMI_COLON = ";"; 61 public static String EMPTY_STRING = ""; 62 public static String START = "start"; 63 public static String ORIENTATION = "Orientation"; 64 public static String READ_ONLY = "ReadOnly"; 65 public static String SPACE = " "; 66 public static String STRING_ITEM_LIST = "StringItemList"; 67 public static String FONT_DESCRIPTOR = "FontDescriptor"; 68 } 69