/** * @param context * @return value of PasswordData_ExampleConfiguration */ public final encryption.proxies.ExampleConfiguration getPasswordData_ExampleConfiguration( IContext context) throws CoreException { encryption.proxies.ExampleConfiguration result = null; IMendixIdentifier identifier = getMendixObject() .getValue(context, MemberNames.PasswordData_ExampleConfiguration.toString()); if (identifier != null) result = encryption.proxies.ExampleConfiguration.load(context, identifier); return result; }
/** * Set value of PasswordData_ExampleConfiguration * * @param context * @param passworddata_exampleconfiguration */ public final void setPasswordData_ExampleConfiguration( IContext context, encryption.proxies.ExampleConfiguration passworddata_exampleconfiguration) { if (passworddata_exampleconfiguration == null) getMendixObject() .setValue(context, MemberNames.PasswordData_ExampleConfiguration.toString(), null); else getMendixObject() .setValue( context, MemberNames.PasswordData_ExampleConfiguration.toString(), passworddata_exampleconfiguration.getMendixObject().getId()); }