Home
last modified time | relevance | path

Searched refs:propertiesToAdd (Results 1 – 3 of 3) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.p2/bundles/org.eclipse.equinox.p2.director/src/org/eclipse/equinox/internal/p2/director/
H A DProfileChangeRequest.java38 …private HashMap<String, String> propertiesToAdd = null; // map of key->value for properties to be … field in ProfileChangeRequest
73 if (propertiesToAdd != null) in getProfileProperties()
74 result.putAll(propertiesToAdd); in getProfileProperties()
117 if (propertiesToAdd == null) in setProfileProperty()
118 propertiesToAdd = new HashMap<>(); in setProfileProperty()
119 propertiesToAdd.put(key, value); in setProfileProperty()
179 if (propertiesToAdd == null) in getPropertiesToAdd()
181 return propertiesToAdd; in getPropertiesToAdd()
216 …result.propertiesToAdd = propertiesToAdd == null ? null : (HashMap<String, String>) propertiesToAd… in clone()
/dports/www/grails/grails-1.3.6/src/java/org/codehaus/groovy/grails/compiler/injection/
H A DDefaultGrailsDomainClassInjector.java107 List<PropertyNode> propertiesToAdd = new ArrayList<PropertyNode>(); in injectAssociations() local
114 propertiesToAdd.addAll(createPropertiesForHasManyExpression(e, classNode)); in injectAssociations()
119 propertiesToAdd.addAll(createPropertiesForBelongsToExpression(e, classNode)); in injectAssociations()
122 injectAssociationProperties(classNode, propertiesToAdd); in injectAssociations()
147 …private void injectAssociationProperties(ClassNode classNode, List<PropertyNode> propertiesToAdd) { in injectAssociationProperties() argument
148 for (PropertyNode pn : propertiesToAdd) { in injectAssociationProperties()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.p2/bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/internal/p2/engine/
H A DSimpleProfileRegistry.java1105 …IStatus setProfileStateProperties(String id, long timestamp, Map<String, String> propertiesToAdd) { in setProfileStateProperties() argument
1106 if (id == null || propertiesToAdd == null) in setProfileStateProperties()
1112 return internalSetProfileStateProperties(internalProfile, timestamp, propertiesToAdd); in setProfileStateProperties()
1115 …lSetProfileStateProperties(IProfile profile, long timestamp, Map<String, String> propertiesToAdd) { in internalSetProfileStateProperties() argument
1125 for (Map.Entry<String, String> entry : propertiesToAdd.entrySet()) { in internalSetProfileStateProperties()