blob: a4dfcb8eaf04a42eef238233eb8f216fb173c5a3 [file] [log] [blame]
jeffliuec1c4782006-05-24 14:16:24 +00001/*******************************************************************************
2 * Copyright (c) 2002 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_williamsc06c86f2005-03-18 18:23:41 +000013package org.eclipse.wst.xml.core.internal.contentmodel.modelquery;
david_williams95990ef2005-03-18 07:20:23 +000014
15
16public interface CMDocumentReference
17{
18 public String getPublicId();
19 public String getSystemId();
20}