Revision 29018 branches/v2_0_0_prep/libraries/libFMap_geometries/src/org/gvsig/fmap/geom/primitive/Solid.java

View differences:

Solid.java
27 27

  
28 28
package org.gvsig.fmap.geom.primitive;
29 29

  
30
import java.awt.image.BufferedImage;
31

  
30 32
/**
31 33
 * <p>
32 34
 * This interface is equivalent to the GM_Solid specified in 
......
37 39
 * @see <a href="http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=26012">ISO 19107</a>
38 40
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera</a>
39 41
 * @author <a href="mailto:jtorres@ai2.upv.es">Jordi Torres Fabra</a>  
40
 * @author <a href="mailto:rgaitan@ai2.upv.es">Rafa Gait?n Linares</a>
42
 * @author <a href="mailto:rgaitan@ai2.upv.es">Rafa Gaitn Linares</a>
41 43
 */
42 44
public interface Solid extends Primitive{
43 45

  
44
	
45 46
	public void  addSurface(Surface surface);
46 47
	
47 48
	public void removeSurface(int position);
......
50 51
	
51 52
	public Surface getSurfaceAt(int position);
52 53
	
54
	public void addTexture();
53 55
	
56
	public BufferedImage getTextureAt(int position);
57
	
58
	public void removeTexture(int position);
59
	
60
	public int getNumTextures();
61
	
54 62
}

Also available in: Unified diff