1 38 39 40 package org.jvnet.fastinfoset; 41 42 public class ReferencedVocabulary { 43 private final String URI; 44 private final Vocabulary vocabulary; 45 46 public ReferencedVocabulary(String URI, Vocabulary vocabulary) { 47 this.URI = URI; 48 this.vocabulary = vocabulary; 49 } 50 51 public String getURI() { 52 return URI; 53 } 54 55 public Vocabulary getVocabulary() { 56 return vocabulary; 57 } 58 } 59 | Popular Tags |