/******************************************************************************* * Copyright (c) 2012 VMware, Inc. * 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: * VMware, Inc. - initial API and implementation *******************************************************************************/ package org.springframework.ide.eclipse.config.core.schemas; /** * Util schema derived from * <code>http://www.springframework.org/schema/util/spring-util-2.5.xsd</code> * @author Leo Dos Santos * @author Christian Dupuis * @since STS 2.0.0 * @version Spring Util 2.5 */ public class UtilSchemaConstants { // URI public static String URI = "http://www.springframework.org/schema/util"; //$NON-NLS-1$ // Element tags public static String ELEM_CONSTANT = "constant"; //$NON-NLS-1$ public static String ELEM_LIST = "list"; //$NON-NLS-1$ public static String ELEM_MAP = "map"; //$NON-NLS-1$ public static String ELEM_PROPERTIES = "properties"; //$NON-NLS-1$ public static String ELEM_PROPERTY_PATH = "property-path"; //$NON-NLS-1$ public static String ELEM_SET = "set"; //$NON-NLS-1$ // Attribute tags public static String ATTR_ID = "id"; //$NON-NLS-1$ public static String ATTR_KEY_TYPE = "key-type"; //$NON-NLS-1$ public static String ATTR_LIST_CLASS = "list-class"; //$NON-NLS-1$ public static String ATTR_LOCAL_OVERRIDE = "local-override"; //$NON-NLS-1$ public static String ATTR_LOCATION = "location"; //$NON-NLS-1$ public static String ATTR_MAP_CLASS = "map-class"; //$NON-NLS-1$ public static String ATTR_PATH = "path"; //$NON-NLS-1$ public static String ATTR_SCOPE = "scope"; //$NON-NLS-1$ public static String ATTR_SET_CLASS = "set-class"; //$NON-NLS-1$ public static String ATTR_STATIC_FIELD = "static-field"; //$NON-NLS-1$ public static String ATTR_VALUE_TYPE = "value-type"; //$NON-NLS-1$ }