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

gui.ava.html.link.LinkInfo Maven / Gradle / Ivy

The newest version!
package gui.ava.html.link;

import java.awt.*;
import java.util.List;
import java.util.Map;

/**
 * @author Yoav Aharoni
 */
public class LinkInfo {
	private Map attributes;
	private List bounds;

	public LinkInfo(Map attributes, List bounds) {
		this.attributes = attributes;
		this.bounds = bounds;
	}

	public Map getAttributes() {
		return attributes;
	}

	public List getBounds() {
		return bounds;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy