blob: 89138e9b79fdd137d0a16567cf1fe24171ca9771 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Oracle Corporation.
* 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:
* Oracle - initial API and implementation
*
********************************************************************************/
package org.eclipse.jst.jsf.common.metadata.internal;
import java.util.Set;
/**
* Binds a domain of metatdata to a source model type which is defined by a {@link IMetaDataLocator}
* and set of {@link IMetaDataTranslator}s
* Not intended to be implemented by clients. Created from ext-pts.
*/
public interface IDomainSourceModelType {
public String getDomain();
public IMetaDataLocator getLocator();
// public int getOrdinal();
public Set/*<IMetaDataTranslator>*/ getTranslators();
}