public boolean isImmutable() { Properties properties; if (tableConfiguration.getProperties().containsKey(PropertyRegistry.ANY_IMMUTABLE)) { properties = tableConfiguration.getProperties(); } else { properties = context.getJavaModelGeneratorConfiguration().getProperties(); } return isTrue(properties.getProperty(PropertyRegistry.ANY_IMMUTABLE)); }
public boolean isConstructorBased() { if (isImmutable()) { return true; } Properties properties; if (tableConfiguration.getProperties().containsKey(PropertyRegistry.ANY_CONSTRUCTOR_BASED)) { properties = tableConfiguration.getProperties(); } else { properties = context.getJavaModelGeneratorConfiguration().getProperties(); } return isTrue(properties.getProperty(PropertyRegistry.ANY_CONSTRUCTOR_BASED)); }