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