1 17 package org.eclipse.emf.ecore.xmi.impl; 18 19 import org.eclipse.emf.ecore.xmi.XMLResource; 20 21 31 public class XMLInfoImpl implements XMLResource.XMLInfo 32 { 33 protected int xmlRepresentation; 34 protected String targetNamespace; 35 protected String name; 36 37 public XMLInfoImpl() 38 { 39 xmlRepresentation = UNSPECIFIED; 40 } 41 42 49 public int getXMLRepresentation() 50 { 51 return xmlRepresentation; 52 } 53 54 58 public void setXMLRepresentation(int representation) 59 { 60 xmlRepresentation = representation; 61 } 62 63 public String getTargetNamespace() 64 { 65 return targetNamespace; 66 } 67 68 public void setTargetNamespace(String namespaceURI) 69 { 70 targetNamespace = namespaceURI; 71 } 72 73 77 public String getName() 78 { 79 return name; 80 } 81 82 85 public void setName(String name) 86 { 87 this.name = name; 88 } 89 } 90 | Popular Tags |