1 22 23 package org.xquark.mapper.storage; 24 25 import org.xquark.mapper.metadata.PathNode; 26 27 class SubPathInfo 28 { 29 private static final String RCSRevision = "$Revision: 1.1 $"; 30 private static final String RCSName = "$Name: $"; 31 32 PathNode subPath; 33 int subPathIndex; 34 boolean isText = false; 35 PathNode varPath; 36 37 public SubPathInfo(PathNode subPath, int subPathIndex, boolean isText, PathNode varPath) 38 { 39 this.subPath = subPath; 40 this.subPathIndex = subPathIndex; 41 this.isText = isText; 42 this.varPath = varPath; 43 } 44 45 } 46 47 | Popular Tags |