blob: 2dc70b65f02149afc42f3e0c954f022064defd7f [file] [log] [blame]
/*
* Copyright (c) 2004, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package components.model;
import java.io.Serializable;
/**
* <p>{@link ImageArea} is a JavaBean that represents a hotspot in an
* image map. Within a particular image map, no two hotspots may have
* the same alternate text, because this is treated as a key.</p>
*/
public class ImageArea implements Serializable {
// ------------------------------------------------------------ Constructors
/**
* <p>Construct an uninitialized {@link ImageArea} instance.</p>
*/
public ImageArea() {
}
/**
* <p>Construct an {@link ImageArea} initialized with the specified
* property values.</p>
*
* @param alt Alternate text for this hotspot
* @param coords Coordinate positions for this hotspot
* @param shape Shape of this hotspot (default, rect, circle, poly)
*/
public ImageArea(String alt, String coords, String shape) {
setAlt(alt);
setCoords(coords);
setShape(shape);
}
// -------------------------------------------------------------- Properties
private String alt = null;
/**
* <p>Return the alternate text for this hotspot.</p>
*/
public String getAlt() {
return (this.alt);
}
/**
* <p>Set the alternate text for this hotspot.</p>
*
* @param alt The new alternate text
*/
public void setAlt(String alt) {
this.alt = alt;
}
private String coords = null;
/**
* <p>Return the coordinate positions for this hotspot.</p>
*/
public String getCoords() {
return (this.coords);
}
/**
* <p>Set the coordinate positions for this hotspot.</p>
*
* @param coords The new coordinate positions
*/
public void setCoords(String coords) {
this.coords = coords;
}
private String shape = null;
/**
* <p>Return the shape for this hotspot.</p>
*/
public String getShape() {
return (this.shape);
}
/**
* <p>Set the shape for this hotspot.</p>
*
* @param shape The new shape
*/
public void setShape(String shape) {
this.shape = shape;
}
}