blob: 1501017d0f2e16b850d927236a0fc0a2bac77aa5 [file] [log] [blame]
/*
* Copyright (c) 2003, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM - Initial API and implementation
*
* $Id: UML2PropertySource.java,v 1.2 2004/04/10 03:56:09 khussey Exp $
*/
package org.eclipse.uml2.presentation;
import org.eclipse.emf.edit.provider.IItemPropertyDescriptor;
import org.eclipse.emf.edit.provider.IItemPropertySource;
import org.eclipse.emf.edit.ui.provider.PropertySource;
import org.eclipse.ui.views.properties.IPropertyDescriptor;
/**
*
*/
public class UML2PropertySource extends PropertySource {
public UML2PropertySource(Object object, IItemPropertySource itemPropertySource) {
super(object, itemPropertySource);
}
/*
* @see org.eclipse.emf.edit.ui.provider.PropertySource#createPropertyDescriptor(org.eclipse.emf.edit.provider.IItemPropertyDescriptor)
*/
protected IPropertyDescriptor createPropertyDescriptor(IItemPropertyDescriptor itemPropertyDescriptor) {
return new UML2PropertyDescriptor(object, itemPropertyDescriptor);
}
}