Home | History | Annotate | Download | only in impl

Lines Matching refs:propValue

768 	public void setPropertyBoolean(String schemaNS, String propName, boolean propValue,
771 setProperty(schemaNS, propName, propValue ? TRUESTR : FALSESTR, options);
778 public void setPropertyBoolean(String schemaNS, String propName, boolean propValue)
781 setProperty(schemaNS, propName, propValue ? TRUESTR : FALSESTR, null);
797 public void setPropertyInteger(String schemaNS, String propName, int propValue,
800 setProperty(schemaNS, propName, new Integer(propValue), options);
807 public void setPropertyInteger(String schemaNS, String propName, int propValue)
810 setProperty(schemaNS, propName, new Integer(propValue), null);
826 public void setPropertyLong(String schemaNS, String propName, long propValue,
829 setProperty(schemaNS, propName, new Long(propValue), options);
836 public void setPropertyLong(String schemaNS, String propName, long propValue)
839 setProperty(schemaNS, propName, new Long(propValue), null);
855 public void setPropertyDouble(String schemaNS, String propName, double propValue,
858 setProperty(schemaNS, propName, new Double(propValue), options);
865 public void setPropertyDouble(String schemaNS, String propName, double propValue)
868 setProperty(schemaNS, propName, new Double(propValue), null);
885 public void setPropertyDate(String schemaNS, String propName, XMPDateTime propValue,
888 setProperty(schemaNS, propName, propValue, options);
895 public void setPropertyDate(String schemaNS, String propName, XMPDateTime propValue)
898 setProperty(schemaNS, propName, propValue, null);
915 public void setPropertyCalendar(String schemaNS, String propName, Calendar propValue,
918 setProperty(schemaNS, propName, propValue, options);
925 public void setPropertyCalendar(String schemaNS, String propName, Calendar propValue)
928 setProperty(schemaNS, propName, propValue, null);
953 public void setPropertyBase64(String schemaNS, String propName, byte[] propValue,
956 setProperty(schemaNS, propName, propValue, options);
963 public void setPropertyBase64(String schemaNS, String propName, byte[] propValue)
966 setProperty(schemaNS, propName, propValue, null);
1105 public void setProperty(String schemaNS, String propName, Object propValue,
1111 options = XMPNodeUtils.verifySetOptions(options, propValue);
1118 setNode(propNode, propValue, options, false);
1130 public void setProperty(String schemaNS, String propName, Object propValue) throws XMPException
1132 setProperty(schemaNS, propName, propValue, null);