protected String calculateJavaModelPackage() { JavaModelGeneratorConfiguration config = context.getJavaModelGeneratorConfiguration(); StringBuilder sb = new StringBuilder(); sb.append(config.getTargetPackage()); sb.append(fullyQualifiedTable.getSubPackage(isSubPackagesEnabled(config))); return sb.toString(); }
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)); }