blob: 2e341d18dee33e8d84841f53f4bce37821789b7b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Mylyn project committers 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
*******************************************************************************/
package org.eclipse.mylyn.context.core;
/**
* Virtual proxy for an element or relation in the context model.
*
* @author Mik Kersten
* @since 2.0
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IInteractionObject {
public abstract IDegreeOfInterest getInterest();
public abstract String getContentType();
}