/******************************************************************************* * Copyright (c) 2011 Softberries Krzysztof Grajek. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Softberries Krzysztof Grajek - initial API and implementation ******************************************************************************/ package com.softberries.klerk.preferences; public interface IPreferencesKeys { /** company preferences **/ public final String COMPANY_NAME = "COMPANY_NAME"; public final String COMPANY_VATID = "COMPANY_VATID"; public final String COMPANY_COUNTRY = "COMPANY_COUNTRY"; public final String COMPANY_CITY = "COMPANY_CITY"; public final String COMPANY_STREET = "COMPANY_STREET"; public final String COMPANY_HOUSENR = "COMPANY_HOUSENR"; public final String COMPANY_FLATNR = "COMPANY_FLATNR"; public final String COMPANY_POSTCODE = "COMPANY_POSTCODE"; }