Statistics
| Revision:

root / branches / v02_desarrollo / libraries / libCq CMS for java.old / src / org / cresques / px / IPoint.java @ 1534

History | View | Annotate | Download (133 Bytes)

1 2 luisw
package org.cresques.px;
2
3
public interface IPoint {
4
        public int x();
5
        public int x(int x);
6
        public int y();
7
        public int y(int y);
8
}