1 17 package org.alfresco.repo.search.impl.lucene.query; 18 19 public class DescendantAndSelfStructuredFieldPosition extends AnyStructuredFieldPosition 20 { 21 public DescendantAndSelfStructuredFieldPosition() 22 { 23 super(); 24 } 25 26 public String getDescription() 27 { 28 return "Descendant and Self Axis"; 29 } 30 31 public boolean allowsLinkingBySelf() 32 { 33 return true; 34 } 35 36 public boolean isDescendant() 37 { 38 return true; 39 } 40 41 42 43 } 44 | Popular Tags |