View Javadoc

1   package org.kite9.diagram.primitives;
2   
3   import org.kite9.diagram.position.RenderingInformation;
4   
5   /***
6    * Parent class for all elements of the diagram
7    */
8   public interface DiagramElement extends Comparable<DiagramElement>{
9   
10  	public RenderingInformation getRenderingInformation();
11  	
12  
13  }