Lines Matching refs:pd

162         PropertyDefinition<?> pd;
164 pd = d.getPropertyDefinition(propertyName);
171 if (pd.equals(namingPropertyDefinition)) {
172 throw ArgumentExceptionFactory.unableToSetNamingProperty(d, pd);
176 addPropertyValue(d, pd, value);
214 PropertyDefinition<T> pd, String s) throws ArgumentException {
217 value = pd.decodeValue(s);
222 Collection<T> values = (Collection<T>) properties.get(pd);
228 if (values.size() > 1 && !pd.hasOption(PropertyOption.MULTI_VALUED)) {
229 PropertyException e = new PropertyIsSingleValuedException(pd);
233 properties.put(pd, values);
575 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
576 if (pd instanceof AggregationPropertyDefinition<?,?>) {
578 (AggregationPropertyDefinition<?, ?>)pd;
728 for (PropertyDefinition<?> pd : d.getAllPropertyDefinitions()) {
729 if (pd.hasOption(PropertyOption.HIDDEN)) {
732 if (!app.isAdvancedMode() && pd.hasOption(PropertyOption.ADVANCED)) {
735 properties.add(pd);
912 PropertyDefinition<?> pd = irelation.getNamingPropertyDefinition();
913 if (pd != null) {
914 app.println(INFO_DSCFG_CREATE_NAME_PROMPT_NAMING.get(ufn, pd.getName()));
917 app.printErrln(pd.getSynopsis(), 4);
919 if (pd.getDescription() != null) {
921 app.printErrln(pd.getDescription(), 4);
929 builder.appendCell(b.getUsage(pd));
1069 RelationDefinition<C, S> r, PropertyDefinition<?> pd,
1073 this.namingPropertyDefinition = pd;
1342 for (PropertyDefinition<?> pd : provider.getProperties()) {
1343 setProperty(child, provider, pd);
1484 MyPropertyProvider provider, PropertyDefinition<T> pd) {
1485 Collection<T> values = provider.getPropertyValues(pd);
1489 mo.setPropertyValues(pd, values);