blob: ff59262ab674ab71608d6c22b53aaec248d67584 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2006 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xsd.editor.internal.design.editparts.model;
import org.eclipse.wst.xsd.adt.facade.IADTObject;
import org.eclipse.wst.xsd.adt.facade.IADTObjectListener;
import org.eclipse.wst.xsd.editor.internal.adapters.XSDBaseAdapter;
public class TargetConnectionSpaceFiller implements IADTObject
{
private XSDBaseAdapter adapter;
public TargetConnectionSpaceFiller(XSDBaseAdapter adapter)
{
this.adapter = adapter;
}
/**
* @deprecated remove this
* @return
*/
public XSDBaseAdapter getAdapter()
{
return adapter;
}
public void registerListener(IADTObjectListener listener)
{
}
public void unregisterListener(IADTObjectListener listener)
{
}
}