📄 modelrelation.java
字号:
/*
* $Id: ModelRelation.java,v 1.3 2004/01/19 19:26:52 jonesde Exp $
*
* Copyright (c) 2001, 2002 The Open For Business Project - www.ofbiz.org
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
* OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package org.ofbiz.entity.model;
import java.util.*;
import org.w3c.dom.*;
import org.ofbiz.base.util.*;
/**
* Generic Entity - Relation model class
*
* @author <a href="mailto:jonesde@ofbiz.org">David E. Jones</a>
* @version $Revision: 1.3 $
* @since 2.0
*/
public class ModelRelation {
/** the title, gives a name/description to the relation */
protected String title;
/** the type: either "one" or "many" or "one-nofk" */
protected String type;
/** the name of the related entity */
protected String relEntityName;
/** the name to use for a database foreign key, if applies */
protected String fkName;
/** keyMaps defining how to lookup the relatedTable using columns from this table */
protected List keyMaps = new ArrayList();
/** the main entity of this relation */
protected ModelEntity mainEntity = null;
/** Default Constructor */
public ModelRelation() {
title = "";
type = "";
relEntityName = "";
fkName = "";
}
/** Default Constructor */
public ModelRelation(String type, String title, String relEntityName, String fkName, List keyMaps) {
this.title = title;
if (title == null) title = "";
this.type = type;
this.relEntityName = relEntityName;
this.fkName = fkName;
this.keyMaps.addAll(keyMaps);
}
/** XML Constructor */
public ModelRelation(ModelEntity mainEntity, Element relationElement) {
this.mainEntity = mainEntity;
this.type = UtilXml.checkEmpty(relationElement.getAttribute("type"));
this.title = UtilXml.checkEmpty(relationElement.getAttribute("title"));
this.relEntityName = UtilXml.checkEmpty(relationElement.getAttribute("rel-entity-name"));
this.fkName = UtilXml.checkEmpty(relationElement.getAttribute("fk-name"));
NodeList keyMapList = relationElement.getElementsByTagName("key-map");
for (int i = 0; i < keyMapList.getLength(); i++) {
Element keyMapElement = (Element) keyMapList.item(i);
if (keyMapElement.getParentNode() == relationElement) {
ModelKeyMap keyMap = new ModelKeyMap(keyMapElement);
if (keyMap != null) {
this.keyMaps.add(keyMap);
}
}
}
}
/** the title, gives a name/description to the relation */
public String getTitle() {
if (this.title == null) {
this.title = "";
}
return this.title;
}
public void setTitle(String title) {
if (title == null) {
this.title = "";
} else {
this.title = title;
}
}
/** the type: either "one" or "many" or "one-nofk" */
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
/** the name of the related entity */
public String getRelEntityName() {
return this.relEntityName;
}
public void setRelEntityName(String relEntityName) {
this.relEntityName = relEntityName;
}
public String getFkName() {
return this.fkName;
}
public void setFkName(String fkName) {
this.fkName = fkName;
}
/** the main entity of this relation */
public ModelEntity getMainEntity() {
return this.mainEntity;
}
public void setMainEntity(ModelEntity mainEntity) {
this.mainEntity = mainEntity;
}
/** keyMaps defining how to lookup the relatedTable using columns from this table */
public Iterator getKeyMapsIterator() {
return this.keyMaps.iterator();
}
public int getKeyMapsSize() {
return this.keyMaps.size();
}
public ModelKeyMap getKeyMap(int index) {
return (ModelKeyMap) this.keyMaps.get(index);
}
public void addKeyMap(ModelKeyMap keyMap) {
this.keyMaps.add(keyMap);
}
public ModelKeyMap removeKeyMap(int index) {
return (ModelKeyMap) this.keyMaps.remove(index);
}
/** Find a KeyMap with the specified fieldName */
public ModelKeyMap findKeyMap(String fieldName) {
for (int i = 0; i < keyMaps.size(); i++) {
ModelKeyMap keyMap = (ModelKeyMap) keyMaps.get(i);
if (keyMap.fieldName.equals(fieldName)) return keyMap;
}
return null;
}
/** Find a KeyMap with the specified relFieldName */
public ModelKeyMap findKeyMapByRelated(String relFieldName) {
for (int i = 0; i < keyMaps.size(); i++) {
ModelKeyMap keyMap = (ModelKeyMap) keyMaps.get(i);
if (keyMap.relFieldName.equals(relFieldName))
return keyMap;
}
return null;
}
public String keyMapString(String separator, String afterLast) {
String returnString = "";
if (keyMaps.size() < 1) {
return "";
}
int i = 0;
for (; i < keyMaps.size() - 1; i++) {
returnString = returnString + ((ModelKeyMap) keyMaps.get(i)).fieldName + separator;
}
returnString = returnString + ((ModelKeyMap) keyMaps.get(i)).fieldName + afterLast;
return returnString;
}
public String keyMapUpperString(String separator, String afterLast) {
if (keyMaps.size() < 1)
return "";
StringBuffer returnString = new StringBuffer( keyMaps.size() * 10 );
int i=0;
while (true) {
ModelKeyMap kmap = (ModelKeyMap) keyMaps.get(i);
returnString.append( ModelUtil.upperFirstChar( kmap.fieldName));
i++;
if (i >= keyMaps.size()) {
returnString.append( afterLast );
break;
}
returnString.append( separator );
}
return returnString.toString();
}
public String keyMapRelatedUpperString(String separator, String afterLast) {
if (keyMaps.size() < 1)
return "";
StringBuffer returnString = new StringBuffer( keyMaps.size() * 10 );
int i=0;
while (true) {
ModelKeyMap kmap = (ModelKeyMap) keyMaps.get(i);
returnString.append( ModelUtil.upperFirstChar( kmap.relFieldName ));
i++;
if (i >= keyMaps.size()) {
returnString.append( afterLast );
break;
}
returnString.append( separator );
}
return returnString.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -