1 package net.sf.saxon.om; 2 3 /** 4 * A ValueRepresentation is a representation of a Value. This is a marker interface 5 * used as to represent the union of two classes: Value, and NodeInfo. 6 * Either of these two classes can be used to represent a value. The class is used primarily 7 * to represent the value of a variable. 8 * <p> 9 * This class is intended primarily for internal use, and should not be considered part 10 * of the Saxon public API. 11 */ 12 13 public interface ValueRepresentation { 14 15 /** 16 * An empty array of ValueRepresentation objects 17 */ 18 19 public static final ValueRepresentation[] EMPTY_VALUE_ARRAY = new ValueRepresentation[0]; 20 21 } 22 23 // 24 // The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License"); 25 // you may not use this file except in compliance with the License. You may obtain a copy of the 26 // License at http://www.mozilla.org/MPL/ 27 // 28 // Software distributed under the License is distributed on an "AS IS" basis, 29 // WITHOUT WARRANTY OF ANY KIND, either express or implied. 30 // See the License for the specific language governing rights and limitations under the License. 31 // 32 // The Original Code is: all this file. 33 // 34 // The Initial Developer of the Original Code is Michael H. Kay. 35 // 36 // Portions created by (your name) are Copyright (C) (your legal entity). All Rights Reserved. 37 // 38 // Contributor(s): none. 39 // 40 41