Source Code Cross Referenced for JMLAttributes.java in » Swing-Library » abeille-forms-designer » com » jeta » forms » store » jml » dom » Java Source Code / Java DocumentationJava Source Code and Java Documentation
01: package com.jeta.forms.store.jml.dom;
02:
03: publicinterface JMLAttributes {
04:
05: /**
06: * Return the number of attributes in the list.
07: */
08: publicint getLength();
09:
10: /**
11: * Look up an attribute's value by XML 1.0 qualified name.
12: */
13: publicString getValue(String qName);
14: }