All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.unlaxer.diagram.Renderable Maven / Gradle / Ivy

The newest version!
package org.unlaxer.diagram;

import java.util.Optional;

public interface Renderable{
	
	float baseX();
	float baseY();
	float width();
	float height();
	Tag[] tags();
	boolean isContainer();
	
	default Optional child(){
		return Optional.empty();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy