KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > thaiopensource > relaxng > impl > StringPattern


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
Popular Tags