KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.thaiopensource.relaxng.impl;
2
3 import com.thaiopensource.relaxng.parse.ParsedNameClass;
4 import com.thaiopensource.xml.util.Name;
5
6 public interface NameClass extends ParsedNameClass {
7   static final int SPECIFICITY_NONE = -1;
8   static final int SPECIFICITY_ANY_NAME = 0;
9   static final int SPECIFICITY_NS_NAME = 1;
10   static final int SPECIFICITY_NAME = 2;
11   boolean contains(Name name);
12   int containsSpecificity(Name name);
13   void accept(NameClassVisitor visitor);
14   boolean isOpen();
15 }
16
Popular Tags