KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.thaiopensource.relaxng.impl;
2
3 class UnexpandedNotAllowedPattern extends NotAllowedPattern {
4   UnexpandedNotAllowedPattern() {
5   }
6   boolean isNotAllowed() {
7     return false;
8   }
9   Pattern expand(SchemaPatternBuilder b) {
10     return b.makeNotAllowed();
11   }
12 }
13
Popular Tags