Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / drivers / dgn / DGNElemTagValue.java @ 1005

History | View | Annotate | Download (799 Bytes)

1
/*
2
 * Created on 21-jul-2003
3
 *
4
 * Copyright (c) 2003
5
 * Francisco José Peñarrubia Martínez
6
 * IVER Tecnologías de la Información S.A.
7
 * Salamanca 50
8
 * 46005 Valencia (        SPAIN )
9
 * +34 963163400
10
 * mailto:fran@iver.es
11
 * http://www.iver.es
12
 */
13
package com.iver.cit.gvsig.fmap.drivers.dgn;
14

    
15
/**
16
 * Clase utilizada para guardar un elemento de tipo TagValue.
17
 *
18
 * @author Vicente Caballero Navarro
19
 */
20
public class DGNElemTagValue extends DGNElemCore {
21
        //DGNElemCore core=new DGNElemCore();
22
        public int tagType; /*!< Tag type indicator, DGNTT_* */
23
        public int tagSet; /*!< Which tag set does this relate to? */
24
        public int tagIndex; /*!< Tag index within tag set. */
25
        public int tagLength; /*!< Length of tag information (text) */
26
        public tagValueUnion tagValue = new tagValueUnion();
27
}