1 package com.thaiopensource.relaxng.impl;2 3 abstract class StringPattern extends Pattern {4 StringPattern(int hc) {5 super(false, DATA_CONTENT_TYPE, hc);6 }7 }8