blob: f243c0f1f62c4152d75115e4cb19c8ef694d4c98 [file] [log] [blame]
/*
* Copyright (c) 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: IItemQualifiedTextProvider.java,v 1.1.2.2 2004/08/19 14:42:15 khussey Exp $
*/
package org.eclipse.uml2.provider;
/**
* A provider of qualified text for an item.
*/
public interface IItemQualifiedTextProvider {
/**
* Fetches qualified text for the specified object instance.
*
* @param object
* The object instance for which to fetch qualified text.
* @return The qualified text.
*/
public String getQualifiedText(Object object);
}