1 22 23 package org.xquark.extractor.algebra; 24 25 import java.util.List ; 26 27 public class PlaceHolder extends org.xquark.xquery.parser.XQueryExpression { 28 private static final String RCSRevision = "$Revision: 1.2 $"; 29 private static final String RCSName = "$Name: $"; 30 31 List list; 32 33 public PlaceHolder(List list) { 34 this.list = list; 35 } 36 37 public void setList(List list) { 38 this.list = list; 39 } 40 41 public List getList() { 42 return list; 43 } 44 45 public String print() { 46 return "PlaceHolder"; 47 } 48 } 49 | Popular Tags |