1*a1b4a26bSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*a1b4a26bSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*a1b4a26bSAndrew Rist * or more contributor license agreements. See the NOTICE file 5*a1b4a26bSAndrew Rist * distributed with this work for additional information 6*a1b4a26bSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*a1b4a26bSAndrew Rist * to you under the Apache License, Version 2.0 (the 8*a1b4a26bSAndrew Rist * "License"); you may not use this file except in compliance 9*a1b4a26bSAndrew Rist * with the License. You may obtain a copy of the License at 10*a1b4a26bSAndrew Rist * 11*a1b4a26bSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*a1b4a26bSAndrew Rist * 13*a1b4a26bSAndrew Rist * Unless required by applicable law or agreed to in writing, 14*a1b4a26bSAndrew Rist * software distributed under the License is distributed on an 15*a1b4a26bSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*a1b4a26bSAndrew Rist * KIND, either express or implied. See the License for the 17*a1b4a26bSAndrew Rist * specific language governing permissions and limitations 18*a1b4a26bSAndrew Rist * under the License. 19*a1b4a26bSAndrew Rist * 20*a1b4a26bSAndrew Rist *************************************************************/ 21*a1b4a26bSAndrew Rist 22*a1b4a26bSAndrew Rist 23cdf0e10cSrcweir package com.sun.star.wizards.common; 24cdf0e10cSrcweir 25cdf0e10cSrcweir /** 26cdf0e10cSrcweir * 27cdf0e10cSrcweir * @author Ocke Janssen 28cdf0e10cSrcweir */ 29cdf0e10cSrcweir public class PropertyNames 30cdf0e10cSrcweir { 31cdf0e10cSrcweir 32cdf0e10cSrcweir public static String PROPERTY_ENABLED = "Enabled"; 33cdf0e10cSrcweir public static String PROPERTY_HEIGHT = "Height"; 34cdf0e10cSrcweir public static String PROPERTY_HELPURL = "HelpURL"; 35cdf0e10cSrcweir public static String PROPERTY_POSITION_X = "PositionX"; 36cdf0e10cSrcweir public static String PROPERTY_POSITION_Y = "PositionY"; 37cdf0e10cSrcweir public static String PROPERTY_LABEL = "Label"; 38cdf0e10cSrcweir public static String PROPERTY_MULTILINE = "MultiLine"; 39cdf0e10cSrcweir public static String PROPERTY_NAME = "Name"; 40cdf0e10cSrcweir public static String PROPERTY_STEP = "Step"; 41cdf0e10cSrcweir public static String PROPERTY_WIDTH = "Width"; 42cdf0e10cSrcweir public static String PROPERTY_TABINDEX = "TabIndex"; 43cdf0e10cSrcweir public static String PROPERTY_STATE = "State"; 44cdf0e10cSrcweir public static String PROPERTY_IMAGEURL = "ImageURL"; 45cdf0e10cSrcweir public static String PROPERTY_TITLE = "Title"; 46cdf0e10cSrcweir public static String PROPERTY_BORDER = "Border"; 47cdf0e10cSrcweir public static String PROPERTY_MOVEABLE = "Moveable"; 48cdf0e10cSrcweir public static String PROPERTY_CLOSEABLE = "Closeable"; 49cdf0e10cSrcweir public static String PROPERTY_ALIGN = "Align"; 50cdf0e10cSrcweir public static String COMMAND = "Command"; 51cdf0e10cSrcweir public static String COMMAND_TYPE = "CommandType"; 52cdf0e10cSrcweir public static String SELECTED_ITEMS = "SelectedItems"; 53cdf0e10cSrcweir public static String URL = "URL"; 54cdf0e10cSrcweir public static String ACTIVE_CONNECTION = "ActiveConnection"; 55cdf0e10cSrcweir public static String ASC = "ASC"; 56cdf0e10cSrcweir public static String SEMI_COLON = ";"; 57cdf0e10cSrcweir public static String EMPTY_STRING = ""; 58cdf0e10cSrcweir public static String START = "start"; 59cdf0e10cSrcweir public static String ORIENTATION = "Orientation"; 60cdf0e10cSrcweir public static String READ_ONLY = "ReadOnly"; 61cdf0e10cSrcweir public static String SPACE = " "; 62cdf0e10cSrcweir public static String STRING_ITEM_LIST = "StringItemList"; 63cdf0e10cSrcweir public static String FONT_DESCRIPTOR = "FontDescriptor"; 64cdf0e10cSrcweir } 65