org.apache.cayenne.gen.ClassGenerationInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cayenne-client-nodeps
Show all versions of cayenne-client-nodeps
Cayenne Object Persistence Framework
/*****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
****************************************************************/
package org.apache.cayenne.gen;
import java.util.Iterator;
import org.apache.cayenne.map.ObjEntity;
import org.apache.cayenne.map.Relationship;
import org.apache.cayenne.project.validator.MappingNamesHelper;
import org.apache.cayenne.util.NameConverter;
/**
* Class generation engine for ObjEntities based on Velocity templates
* . Instance of ClassGenerationInfo is available inside Velocity template under
* the key "classGen".
*
* @author Andrei Adamchik
* @since 1.2
*/
public class ClassGenerationInfo {
protected ObjEntity entity;
// template substitution values
protected String packageName;
protected String className;
protected String superPrefix;
protected String prop;
protected String superPackageName;
protected String superClassName;
/**
* Returns Java package name of the class associated with this generator.
*/
public String getPackageName() {
return packageName;
}
/**
* Sets Java package name of the class associated with this generator.
*/
protected void setPackageName(String packageName) {
this.packageName = packageName;
}
/**
* Returns superPackageName
property that defines a
* superclass's package name.
*/
public String getSuperPackageName() {
return superPackageName;
}
/**
* Sets superPackageName
property that defines a superclass's
* package name.
*/
protected void setSuperPackageName(String superPackageName) {
this.superPackageName = superPackageName;
}
/**
* Returns class name (without a package) of the class associated with this
* generator.
*/
public String getClassName() {
return className;
}
/**
* Sets class name of the class associated with this
* generator. Class name must not include a package.
*/
protected void setClassName(String className) {
this.className = className;
}
protected void setSuperPrefix(String superPrefix) {
this.superPrefix = superPrefix;
}
public String formatJavaType(String type) {
if (type != null) {
if (type.startsWith("java.lang.") && type.indexOf(10, '.') < 0) {
return type.substring("java.lang.".length());
}
if (packageName != null
&& type.startsWith(packageName + '.')
&& type.indexOf(packageName.length() + 1, '.') < 0) {
return type.substring(packageName.length() + 1);
}
}
return type;
}
public String formatVariableName(String variableName) {
if (MappingNamesHelper.getInstance().isReservedJavaKeyword(variableName)) {
return "_" + variableName;
} else {
return variableName;
}
}
/**
* Returns prefix used to distinguish between superclass and subclass when
* generating classes in pairs.
*/
public String getSuperPrefix() {
return superPrefix;
}
/**
* Sets current class property name. This method is called during template
* parsing for each of the class properties.
*/
public void setProp(String prop) {
this.prop = prop;
}
public String getProp() {
return prop;
}
/**
* Capitalizes the first letter of the property name.
*
* @since 1.1
*/
public String capitalized(String name) {
if (name == null || name.length() == 0)
return name;
char c = Character.toUpperCase(name.charAt(0));
return (name.length() == 1) ? Character.toString(c) : c + name.substring(1);
}
/**
* Converts property name to Java constants naming convention.
*
* @since 1.1
*/
public String capitalizedAsConstant(String name) {
if (name == null || name.length() == 0)
return name;
return NameConverter.javaToUnderscored(name);
}
/** Returns current property name with capitalized first letter */
public String getCappedProp() {
return capitalized(prop);
}
/**
* @return a current property name converted to a format used by java static
* final variables - all capitalized with underscores.
*
* @since 1.0.3
*/
public String getPropAsConstantName() {
return capitalizedAsConstant(prop);
}
/**
* Returns true if current entity contains at least one Declared List property.
*
* @since 1.2
*/
public boolean isContainingDeclaredListProperties() {
if (entity == null) {
return false;
}
Iterator it = entity.getDeclaredRelationships().iterator();
while(it.hasNext()) {
Relationship r = (Relationship) it.next();
if(r.isToMany()) {
return true;
}
}
return false;
}
/**
* Returns true if current entity contains at least one List property.
*
* @since 1.1
*/
public boolean isContainingListProperties() {
if (entity == null) {
return false;
}
Iterator it = entity.getRelationships().iterator();
while(it.hasNext()) {
Relationship r = (Relationship) it.next();
if(r.isToMany()) {
return true;
}
}
return false;
}
/**
* Returns true
if a class associated with this generator is
* located in a package.
*/
public boolean isUsingPackage() {
return packageName != null;
}
/**
* Returns true
if a superclass class associated with this
* generator is located in a package.
*/
public boolean isUsingSuperPackage() {
return superPackageName != null;
}
/** Returns entity for the class associated with this generator. */
public ObjEntity getEntity() {
return entity;
}
/**
* @param entity The entity to set.
*/
protected void setObjEntity(ObjEntity entity) {
this.entity = entity;
}
/**
* Returns the fully qualified super class of the data object class
* associated with this generator
*/
public String getSuperClassName() {
return superClassName;
}
/**
* Sets the fully qualified super class of the data object class associated
* with this generator
*/
protected void setSuperClassName(String value) {
this.superClassName = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy