1 31 package org.objectweb.proactive.examples.c3d; 32 33 public class Interval implements java.io.Serializable { 34 35 public int number; 36 public int width; 37 public int height; 38 public int yfrom; 39 public int yto; 40 public int total; 41 42 43 public Interval(int number, int width, int height, int yfrom, int yto, int total) { 44 this.number = number; 45 this.width = width; 46 this.height = height; 47 this.yfrom = yfrom; 48 this.yto = yto; 49 this.total = total; 50 } 51 } 52 | Popular Tags |