Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libDwg / src / org / gvsig / dwg / lib / objects / DwgImage.java @ 28969

History | View | Annotate | Download (640 Bytes)

1
/*
2
 * Created on 02-feb-2007 by azabala
3
 *
4
 */
5
package org.gvsig.dwg.lib.objects;
6

    
7
import org.gvsig.dwg.lib.DwgObject;
8

    
9
/**
10
 * @author alzabord
11
 *
12
 * TODO To change the template for this generated type comment go to
13
 * Window - Preferences - Java - Code Style - Code Templates
14
 */
15
public class DwgImage extends DwgObject {
16

    
17
        /**
18
         * @param index
19
         */
20
        public DwgImage(int index) {
21
                super(index);
22
                // TODO Auto-generated constructor stub
23
        }
24
        public Object clone(){
25
                DwgImage obj = new DwgImage(index);
26
                this.fill(obj);
27
                return obj;
28
        }
29
        
30
        protected void fill(DwgObject obj){
31
                super.fill(obj);
32
                //DwgImage myObj = (DwgImage)obj;
33

    
34
        }
35

    
36
}