com.esri.arcgis.geometry.Polygon Maven / Gradle / Ivy
package com.esri.arcgis.geometry;
import java.io.IOException;
import com.esri.arcgis.system.IClone;
import com.linar.jintegra.AutomationException;
public class Polygon implements IGeometry, IClone
{
private static final long serialVersionUID = 1L;
public Polygon() {
// constructor stub
}
public Polygon(Object obj) {
// constructor stub
}
public void setSpatialReferenceByRef(ISpatialReference spatialRef)
{
// method stub
}
public int getGeometryType() throws IOException, AutomationException
{
// method stub
return 0;
}
public ISpatialReference getSpatialReference()
{
// method stub
return null;
}
public void addGeometry(IGeometry geom, Object object, Object object2)
{
// method stub
}
public boolean isEqual(IClone clone) {
return true;
}
}