Statistics
| Revision:

svn-gvsig-desktop / tags / v1_1_Build_1014 / libraries / libDwg / src / com / iver / cit / jdwglib / dwg / DwgObjectOffset.java @ 13593

History | View | Annotate | Download (1.82 KB)

1
/* jdwglib. Java Library for reading Dwg files.
2
 * 
3
 * Author: Jose Morell Rama (jose.morell@gmail.com).
4
 * Port from the Pythoncad Dwg library by Art Haas.
5
 *
6
 * Copyright (C) 2005 Jose Morell, IVER TI S.A. and Generalitat Valenciana
7
 *
8
 * This program is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU General Public License
10
 * as published by the Free Software Foundation; either version 2
11
 * of the License, or (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
21
 *
22
 * For more information, contact:
23
 *
24
 * Jose Morell (jose.morell@gmail.com)
25
 * 
26
 * or
27
 *
28
 * IVER TI S.A.
29
 *  C/Salamanca, 50
30
 *  46005 Valencia
31
 *  Spain
32
 *  +34 963163400
33
 *  dac@iver.es
34
 */
35
package com.iver.cit.jdwglib.dwg;
36

    
37
/**
38
 * The DwgObjectOffset class is useful to store the handle of an object with its
39
 * offset in the DWG file
40
 * 
41
 * @author jmorell
42
 */
43
public class DwgObjectOffset {
44
        private int handle;
45
        private int offset;
46
        
47
        /**
48
         * Create a new DwgObjectOffset object
49
         * 
50
         * @param handle Handle of the object
51
         * @param offset Offset in the DWG file of the object
52
         */
53
        public DwgObjectOffset(int handle, int offset) {
54
                this.handle = handle;
55
                this.offset = offset;
56
        }
57
    /**
58
     * @return Returns the handle.
59
     */
60
    public int getHandle() {
61
        return handle;
62
    }
63
    /**
64
     * @return Returns the offset.
65
     */
66
    public int getOffset() {
67
        return offset;
68
    }
69
}