1 19 20 26 package org.netbeans.modules.xml.wsdl.ui.fastmodel.impl; 27 28 import java.util.ArrayList ; 29 import java.util.List ; 30 import org.netbeans.modules.xml.wsdl.ui.fastmodel.FastSchema; 31 32 33 34 35 36 37 38 39 40 46 public class FastSchemaImpl implements FastSchema { 47 48 private String targetNamespace; 49 50 private String parseErrorMessage; 51 52 private List imports = new ArrayList (); 53 54 public FastSchemaImpl() { 55 56 } 57 58 public String getTargetNamespace() { 59 return this.targetNamespace; 60 } 61 62 public void setTargetNamespace(String tNamespace) { 63 this.targetNamespace = tNamespace; 64 } 65 66 public String getParseErrorMessage() { 67 return this.parseErrorMessage; 68 } 69 70 public void setParseErrorMessage(String errorMessage) { 71 this.parseErrorMessage = errorMessage; 72 } 73 74 } 75 | Popular Tags |