1 22 23 package org.xquark.xquery.parser; 24 25 28 29 public class ImportModule extends XQueryExpression { 30 31 protected String prefix = null; 32 protected String name = null; 33 protected String location = null; 34 protected XQueryModule module = null; 35 36 ImportModule (String prefix, String name, String location, XQueryModule module) { 37 this.prefix = prefix; 38 this.name = name; 39 this.location = location; 40 this.module = module; 41 } 42 43 public XQueryModule getModule() { 44 return module; 45 } 46 47 public String getPrefix() { 48 return prefix; 49 } 50 51 public String getName() { 52 return name; 53 } 54 55 public String getLocation() { 56 return location; 57 } 58 59 } 60 | Popular Tags |