blob: 5af233806d5b6b649aa369f033828af2db858d9e [file] [log] [blame]
david_williams96213482004-11-11 09:07:12 +00001/*******************************************************************************
2 * Copyright (c) 2001, 2004 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 * Jens Lukowski/Innoopract - initial renaming/restructuring
11 *
12 *******************************************************************************/
david_williams56777022005-04-11 06:21:55 +000013package org.eclipse.wst.xml.core.internal.provisional.format;
david_williams96213482004-11-11 09:07:12 +000014
pavery40dd89e2005-04-01 21:09:29 +000015import org.eclipse.wst.sse.core.internal.format.IStructuredFormatPreferences;
david_williams96213482004-11-11 09:07:12 +000016
17public interface IStructuredFormatPreferencesXML extends IStructuredFormatPreferences {
18 boolean getSplitMultiAttrs();
19
20 void setSplitMultiAttrs(boolean splitMultiAttrs);
21}