XMLRegion.java

00001 package edu.stanford.hci.r3.paper.regions;
00002 
00003 import edu.stanford.hci.r3.paper.Region;
00015 public class XMLRegion extends Region {
00016         
00020         private String type;
00021 
00032         public XMLRegion(String name, double xInches, double yInches, double wInches, double hInches, String type) {
00033                 super(name, xInches, yInches, wInches, hInches);
00034                 this.type = type;
00035         }
00036 
00041         public String getType() {
00042                 return type;
00043         }
00044         
00045 }

Generated on Sat Apr 14 18:21:39 2007 for R3 Paper Toolkit by  doxygen 1.4.7