Skip to main content
summaryrefslogblamecommitdiffstats
blob: 01fa818fbba9b18f1f1ee1899b9a1cf74f397994 (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                                                                                
  


                                                                                 

                                                
                                                     

                                               


                        
                                                                   






                                  
                                    
 
 
/*******************************************************************************
 * Copyright (c) 2011 Boeing.
 * 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
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.display.api.components;

import org.eclipse.osee.display.api.data.WebArtifact;
import org.eclipse.osee.display.api.data.WebId;

/**
 * @author Shawn F. Cook
 */
public interface RelationComponent extends DisplaysErrorComponent {

   void clearAll();

   void addRelationType(WebId id);

   void clearRelations();

   void addRelation(WebArtifact id);

}

Back to the top