blob: c4095ca57bb750d8409d3396fb0b877767f436fc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xsd.ui.internal.design.editparts.model;
import org.eclipse.wst.xsd.ui.internal.adapters.XSDBaseAdapter;
import org.eclipse.wst.xsd.ui.internal.adt.facade.IADTObject;
import org.eclipse.wst.xsd.ui.internal.adt.facade.IADTObjectListener;
public class TargetConnectionSpaceFiller implements IADTObject
{
private XSDBaseAdapter adapter;
public TargetConnectionSpaceFiller(XSDBaseAdapter adapter)
{
this.adapter = adapter;
}
public XSDBaseAdapter getAdapter()
{
return adapter;
}
public void registerListener(IADTObjectListener listener)
{
}
public void unregisterListener(IADTObjectListener listener)
{
}
public boolean isReadOnly()
{
return false;
}
}