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