1 22 23 package org.xquark.xpath.datamodel; 24 25 import org.xquark.schema.Declaration; 26 import org.xquark.schema.Type; 27 28 public interface TypedDOM { 29 public static final String RCSRevision = "$Revision: 1.1 $"; 30 public static final String RCSName = "$Name: $"; 31 32 public void setType(Type type); 33 34 public Type getType(); 35 36 public void setTypedValue(Object typedValue); 37 38 public Object getTypedValue(); 39 40 public Object getExtendedTypedValue(); 41 42 public void setDeclaration(Declaration elementDeclaration); 43 44 public Declaration getDeclaration(); 45 46 public void setNormalizedStringValue(String normalizedStringValue); 47 48 public String getNormalizedStringValue(); 49 } 50 | Popular Tags |