1 55 56 package org.jboss.axis.wsdl.symbolTable; 57 58 public class MimeInfo 59 { 60 String type; 61 String dims; 62 63 public MimeInfo(String type, String dims) 64 { 65 this.type = type; 66 this.dims = dims; 67 } 68 69 public String getDimensions() 70 { 71 return this.dims; 72 } 73 74 public String getType() 75 { 76 return this.type; 77 } 78 79 public String toString() 80 { 81 return "(" + type + "," + dims + ")"; 82 } 83 } 84 | Popular Tags |