blob: 2b1519ce9a9edc930838f25e21cfc8a7ba933d5d [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;
import java.util.Collection;
import org.eclipse.mylyn.internal.context.core.InteractionContextRelation;
/**
* Virtual proxy for a structured element in the contet model.
*
* @author Mik Kersten
* @since 2.0
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IInteractionElement extends IInteractionObject {
public abstract String getHandleIdentifier();
public abstract void setHandleIdentifier(String handle);
public abstract IInteractionContext getContext();
public abstract Collection<InteractionContextRelation> getRelations();
/**
* @since 3.0
*/
public abstract IInteractionRelation getRelation(String targetHandle);
public abstract void clearRelations();
}