Statistics
| Revision:

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

History | View | Annotate | Download (761 Bytes)

1 378 fjp
/*
2
 * Created on 22-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 1005 vcaballero
 * Clase utilizada para guardar un elemento de tipo TagSet.
17 378 fjp
 *
18 1005 vcaballero
 * @author Vicente Caballero Navarro
19 378 fjp
 */
20
public class DGNElemTagSet extends DGNElemCore {
21 1005 vcaballero
        //DGNElemCore core=new DGNElemCore();
22
        public int tagCount; /*!< Number of tags in tagList. */
23
        public int tagSet; /*!< Tag set index. */
24
        public int flags; /*!< Tag flags - not too much known. */
25
        public char[] tagSetName;
26
        public DGNTagDef[] tagList; /*!< List of tag definitions in this set. */
27 378 fjp
}