Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libCq CMS for java.old / src-ermapper / com / ermapper / util / JNCSScreenPoint.java @ 143

History | View | Annotate | Download (450 Bytes)

1
// Decompiled by Jad v1.5.8f. Copyright 2001 Pavel Kouznetsov.
2
// Jad home page: http://www.kpdus.com/jad.html
3
// Decompiler options: packimports(3) 
4
// Source File Name:   JNCSScreenPoint.java
5

    
6
package com.ermapper.util;
7

    
8

    
9
public class JNCSScreenPoint
10
{
11

    
12
    public JNCSScreenPoint()
13
    {
14
        x = 0;
15
        y = 0;
16
    }
17

    
18
    public JNCSScreenPoint(int i, int j)
19
    {
20
        x = i;
21
        y = j;
22
    }
23

    
24
    public int x;
25
    public int y;
26
}