forked from geodmms/xdgnjobs

Dennis Kao
2013-06-05 fc9880cd77a09dcfdea2791dee418f54f5721cf3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.ximple.io.dgn7;
 
/**
 * UserAttributeData
 *
 * @author Ulysses
 * @version 0.1
 * @since 2006/5/18
 */
public class UserAttributeData {
    protected short[] _src;
 
    public UserAttributeData(short id, int attributeCount) {
        _src = new short[attributeCount];
        _src[0] = id;
    }
 
    public UserAttributeData(short[] src) {
        _src = src;
    }
 
    public short getID() {
        return _src[0];
    }
 
    public void setID(short value) {
        _src[0] = value;
    }
}