/* * JBoss, Home of Professional Open Source. * * See the LEGAL.txt file distributed with this work for information regarding copyright ownership and licensing. * * See the AUTHORS.txt file distributed with this work for a full listing of individual contributors. */ package org.teiid.designer.xml.ui.wizards; import org.eclipse.core.runtime.IProgressMonitor; import org.teiid.designer.core.workspace.ModelResource; import org.teiid.designer.metamodels.xml.XmlFragment; import org.teiid.designer.xml.IVirtualDocumentFragmentSource; public class FakeVirtualDocumentFragmentSource implements IVirtualDocumentFragmentSource { @Override public XmlFragment[] getFragments(ModelResource modelResource, IProgressMonitor monitor) { return new XmlFragment[0]; } @Override public void updateSourceFragments(boolean isVisible, IProgressMonitor monitor) { // do nothing } }