Home | History | Annotate | Download | only in xmp

Lines Matching refs:fieldName

107 	 * @param fieldName The name of the field. Must be a simple XML name, must not be
110 * <tt>ns:structName/fNS:fieldName</tt>, where &quot;ns&quot; is the prefix for
115 String fieldName) throws XMPException
118 assertFieldName(fieldName);
120 XMPPath fieldPath = XMPPathParser.expandXPath(fieldNS, fieldName);
212 * @param fieldName The name of the field used as the selector. Must be a simple XML name, must
217 * <tt>ns:arrayName[fNS:fieldName='fieldValue']</tt>, where &quot;ns&quot; is the
222 String fieldName, String fieldValue) throws XMPException
224 XMPPath fieldPath = XMPPathParser.expandXPath(fieldNS, fieldName);
227 throw new XMPException("The fieldName name must be simple", XMPError.BADXPATH);
281 * @param fieldName a struct field name or path
284 private static void assertFieldName(String fieldName) throws XMPException
286 if (fieldName == null || fieldName.length() == 0)