1 16 19 package org.apache.xpath.compiler; 20 21 25 public class PsuedoNames 26 { 27 28 31 public static final String PSEUDONAME_ANY = "*"; 32 33 36 public static final String PSEUDONAME_ROOT = "/"; 37 38 41 public static final String PSEUDONAME_TEXT = "#text"; 42 43 46 public static final String PSEUDONAME_COMMENT = "#comment"; 47 48 51 public static final String PSEUDONAME_PI = "#pi"; 52 53 56 public static final String PSEUDONAME_OTHER = "*"; 57 } 58 | Popular Tags |