Statistics
| Revision:

svn-gvsig-desktop / branches / CqCMSDvp / libraries / libCq CMS for java.old / src / org / cresques / px / PxSize.java @ 2167

History | View | Annotate | Download (293 Bytes)

1 2 luisw
package org.cresques.px;
2
3
public class PxSize implements ISize {
4
        private int pw=0, ph=0;
5
        public PxSize(int w, int h) { this.pw = w; this.ph = h; }
6
        public int w() {return pw;}
7
        public int w(int w) {pw = w; return pw;}
8
        public int h() {return ph;}
9
        public int h(int h) {ph = h; return ph;}
10
}