identifier = Identifier.actionIdentifier(contributeeType.getCorrespondingClass().getName(), memberName, memberParameterNames);
}
private DisabledFacet disabledFacet() {
final DisabledFacet originalFacet = facetHolder.getFacet(DisabledFacet.class);
if( originalFacet != null &&
originalFacet.when() == When.ALWAYS &&
originalFacet.where() == Where.ANYWHERE) {
return originalFacet;
}
// ensure that the contributed association is always disabled
return new DisabledFacetImpl(When.ALWAYS, Where.ANYWHERE, "Contributed property", this);
}