Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/incenter/ngbclient/rowCol.java


1   package org.incenter.ngbclient;
2   import org.incenter.ngbclient.*;
3   
4   public class rowCol
5   {
6       public Integer row, col;
7   
8       public rowCol() {
9     row = new Integer(20);
10    col = new Integer(80);
11      }
12      public rowCol(int r, int c) {
13    row = new Integer(r);
14    col = new Integer(c);
15      }
16  
17  }